Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
iOSTeam
/
Majiabao
/
TealiveModule
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
78616f26
authored
Jul 20, 2026
by
ludi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
做一下xcode26的兼容
parent
5c90d32a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
38 additions
and
6 deletions
.gitignore
LocalPodSpec/GDToolBox/GDToolBox/Classes/GDConfiguration.swift
Module/GDBaseBussiness/GDBaseBussiness/Module/GDBaseBussinessModule.swift
TealiveModule/TealiveModule.xcodeproj/project.pbxproj
TealiveModule/TealiveModule/Info.plist
.gitignore
View file @
78616f26
...
@@ -73,3 +73,24 @@ TealiveModule.xcworkspace/xcuserdata/pierce.xcuserdatad/UserInterfaceState.xcuse
...
@@ -73,3 +73,24 @@ TealiveModule.xcworkspace/xcuserdata/pierce.xcuserdatad/UserInterfaceState.xcuse
TealiveModule.xcworkspace/xcuserdata/pierce.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
TealiveModule.xcworkspace/xcuserdata/pierce.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
TealiveModule/TealiveModule.xcodeproj/xcuserdata/lipeihan.xcuserdatad/xcschemes/xcschememanagement.plist
TealiveModule/TealiveModule.xcodeproj/xcuserdata/lipeihan.xcuserdatad/xcschemes/xcschememanagement.plist
TealiveModule/TealiveModule.xcodeproj/xcuserdata/pierce.xcuserdatad/xcschemes/xcschememanagement.plist
TealiveModule/TealiveModule.xcodeproj/xcuserdata/pierce.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDBaseBussiness/GDBaseBussiness.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDChatMessage/GDChatMessage.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDDataManager/GDDataManager.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDFansGroupModule/GDFansGroupModule.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDFightTeamModule/GDFightTeamModule.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDFriend/GDFriend.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDLoginAndRegistModule/GDLoginAndRegistModule.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDMoment/GDMoment.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDPayment/GDPayment.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDPersonalModule/GDPersonalModule.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDShowRoomListModule/GDShowRoomListModule.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDShowRoomModule/GDShowRoomModule.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDSocialCenter/GDSocialCenter.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDTabbar/GDTabbar.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDTeenagerModule/GDTeenagerModule.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDTest/GDTest.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDUserInfoManager/GDUserInfoManager.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/GDUserZoneModule/GDUserZoneModule.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Module/HostManager/HostManager.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Pods/Pods.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
TealiveModule/TealiveModule.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
LocalPodSpec/GDToolBox/GDToolBox/Classes/GDConfiguration.swift
View file @
78616f26
...
@@ -28,8 +28,8 @@ public let GDlog = XCGLogger(identifier: "xiuse.log.identifier", includeDefaultD
...
@@ -28,8 +28,8 @@ public let GDlog = XCGLogger(identifier: "xiuse.log.identifier", includeDefaultD
public
struct
GDAppConfig
{
public
struct
GDAppConfig
{
/// 版本
/// 版本
public
static
let
gd_versionCode
=
"4300
6
"
public
static
let
gd_versionCode
=
"4300
8
"
public
static
let
gd_version
=
"43.0.0.
6
"
public
static
let
gd_version
=
"43.0.0.
8
"
public
static
var
realVersion
:
String
{
Bundle
.
main
.
infoDictionary
?[
"CFBundleShortVersionString"
]
as?
String
??
""
}
public
static
var
realVersion
:
String
{
Bundle
.
main
.
infoDictionary
?[
"CFBundleShortVersionString"
]
as?
String
??
""
}
/// App ID
/// App ID
...
...
Module/GDBaseBussiness/GDBaseBussiness/Module/GDBaseBussinessModule.swift
View file @
78616f26
...
@@ -11,6 +11,7 @@ import GDRouter
...
@@ -11,6 +11,7 @@ import GDRouter
import
Bifrost
import
Bifrost
import
RxSwift
import
RxSwift
import
UMCommon
import
UMCommon
import
UMPush
@objc
public
class
GDBaseBussinessModule
:
NSObject
,
GDBaseBussinessSwiftRouter
{
@objc
public
class
GDBaseBussinessModule
:
NSObject
,
GDBaseBussinessSwiftRouter
{
...
...
TealiveModule/TealiveModule.xcodeproj/project.pbxproj
View file @
78616f26
...
@@ -409,10 +409,14 @@
...
@@ -409,10 +409,14 @@
inputFileListPaths
=
(
inputFileListPaths
=
(
"${PODS_ROOT}/Target Support Files/Pods-TealiveModule/Pods-TealiveModule-resources-${CONFIGURATION}-input-files.xcfilelist"
,
"${PODS_ROOT}/Target Support Files/Pods-TealiveModule/Pods-TealiveModule-resources-${CONFIGURATION}-input-files.xcfilelist"
,
);
);
inputPaths
=
(
);
name
=
"[CP] Copy Pods Resources"
;
name
=
"[CP] Copy Pods Resources"
;
outputFileListPaths
=
(
outputFileListPaths
=
(
"${PODS_ROOT}/Target Support Files/Pods-TealiveModule/Pods-TealiveModule-resources-${CONFIGURATION}-output-files.xcfilelist"
,
"${PODS_ROOT}/Target Support Files/Pods-TealiveModule/Pods-TealiveModule-resources-${CONFIGURATION}-output-files.xcfilelist"
,
);
);
outputPaths
=
(
);
runOnlyForDeploymentPostprocessing
=
0
;
runOnlyForDeploymentPostprocessing
=
0
;
shellPath
=
/bin/sh
;
shellPath
=
/bin/sh
;
shellScript
=
"\"${PODS_ROOT}/Target Support Files/Pods-TealiveModule/Pods-TealiveModule-resources.sh\"\n"
;
shellScript
=
"\"${PODS_ROOT}/Target Support Files/Pods-TealiveModule/Pods-TealiveModule-resources.sh\"\n"
;
...
@@ -448,10 +452,14 @@
...
@@ -448,10 +452,14 @@
inputFileListPaths
=
(
inputFileListPaths
=
(
"${PODS_ROOT}/Target Support Files/Pods-TealiveModule/Pods-TealiveModule-frameworks-${CONFIGURATION}-input-files.xcfilelist"
,
"${PODS_ROOT}/Target Support Files/Pods-TealiveModule/Pods-TealiveModule-frameworks-${CONFIGURATION}-input-files.xcfilelist"
,
);
);
inputPaths
=
(
);
name
=
"[CP] Embed Pods Frameworks"
;
name
=
"[CP] Embed Pods Frameworks"
;
outputFileListPaths
=
(
outputFileListPaths
=
(
"${PODS_ROOT}/Target Support Files/Pods-TealiveModule/Pods-TealiveModule-frameworks-${CONFIGURATION}-output-files.xcfilelist"
,
"${PODS_ROOT}/Target Support Files/Pods-TealiveModule/Pods-TealiveModule-frameworks-${CONFIGURATION}-output-files.xcfilelist"
,
);
);
outputPaths
=
(
);
runOnlyForDeploymentPostprocessing
=
0
;
runOnlyForDeploymentPostprocessing
=
0
;
shellPath
=
/bin/sh
;
shellPath
=
/bin/sh
;
shellScript
=
"\"${PODS_ROOT}/Target Support Files/Pods-TealiveModule/Pods-TealiveModule-frameworks.sh\"\n"
;
shellScript
=
"\"${PODS_ROOT}/Target Support Files/Pods-TealiveModule/Pods-TealiveModule-frameworks.sh\"\n"
;
...
@@ -607,7 +615,7 @@
...
@@ -607,7 +615,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME
=
AccentColor
;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME
=
AccentColor
;
CODE_SIGN_ENTITLEMENTS
=
TealiveModule/TealiveModule.entitlements
;
CODE_SIGN_ENTITLEMENTS
=
TealiveModule/TealiveModule.entitlements
;
CODE_SIGN_STYLE
=
Automatic
;
CODE_SIGN_STYLE
=
Automatic
;
CURRENT_PROJECT_VERSION
=
1
;
CURRENT_PROJECT_VERSION
=
2026071600
1
;
DEVELOPMENT_TEAM
=
6GG26BHUMC
;
DEVELOPMENT_TEAM
=
6GG26BHUMC
;
FRAMEWORK_SEARCH_PATHS
=
"$(inherited)"
;
FRAMEWORK_SEARCH_PATHS
=
"$(inherited)"
;
GENERATE_INFOPLIST_FILE
=
YES
;
GENERATE_INFOPLIST_FILE
=
YES
;
...
@@ -677,7 +685,7 @@
...
@@ -677,7 +685,7 @@
"$(inherited)"
,
"$(inherited)"
,
"@executable_path/Frameworks"
,
"@executable_path/Frameworks"
,
);
);
MARKETING_VERSION
=
2.
3
;
MARKETING_VERSION
=
2.
5
;
PRODUCT_BUNDLE_IDENTIFIER
=
com.ft.chat.ios
;
PRODUCT_BUNDLE_IDENTIFIER
=
com.ft.chat.ios
;
PRODUCT_NAME
=
"$(TARGET_NAME)"
;
PRODUCT_NAME
=
"$(TARGET_NAME)"
;
SUPPORTED_PLATFORMS
=
"iphoneos iphonesimulator"
;
SUPPORTED_PLATFORMS
=
"iphoneos iphonesimulator"
;
...
@@ -699,7 +707,7 @@
...
@@ -699,7 +707,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME
=
AccentColor
;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME
=
AccentColor
;
CODE_SIGN_ENTITLEMENTS
=
TealiveModule/TealiveModule.entitlements
;
CODE_SIGN_ENTITLEMENTS
=
TealiveModule/TealiveModule.entitlements
;
CODE_SIGN_STYLE
=
Automatic
;
CODE_SIGN_STYLE
=
Automatic
;
CURRENT_PROJECT_VERSION
=
1
;
CURRENT_PROJECT_VERSION
=
2026071600
1
;
DEVELOPMENT_TEAM
=
6GG26BHUMC
;
DEVELOPMENT_TEAM
=
6GG26BHUMC
;
FRAMEWORK_SEARCH_PATHS
=
"$(inherited)"
;
FRAMEWORK_SEARCH_PATHS
=
"$(inherited)"
;
GENERATE_INFOPLIST_FILE
=
YES
;
GENERATE_INFOPLIST_FILE
=
YES
;
...
@@ -769,7 +777,7 @@
...
@@ -769,7 +777,7 @@
"$(inherited)"
,
"$(inherited)"
,
"@executable_path/Frameworks"
,
"@executable_path/Frameworks"
,
);
);
MARKETING_VERSION
=
2.
3
;
MARKETING_VERSION
=
2.
5
;
OTHER_SWIFT_FLAGS
=
"$(inherited)"
;
OTHER_SWIFT_FLAGS
=
"$(inherited)"
;
PRODUCT_BUNDLE_IDENTIFIER
=
com.ft.chat.ios
;
PRODUCT_BUNDLE_IDENTIFIER
=
com.ft.chat.ios
;
PRODUCT_NAME
=
"$(TARGET_NAME)"
;
PRODUCT_NAME
=
"$(TARGET_NAME)"
;
...
...
TealiveModule/TealiveModule/Info.plist
View file @
78616f26
...
@@ -2,6 +2,8 @@
...
@@ -2,6 +2,8 @@
<
!
D
O
C
TYP
E
plist
PU
B
LI
C
"-//
A
ppl
e
//
D
T
D
PLIST
1
.
0
//
E
N"
"http://www.
a
ppl
e
.
c
om/
D
T
D
s/Prop
e
rtyList-
1
.
0
.
d
t
d
"
>
<
!
D
O
C
TYP
E
plist
PU
B
LI
C
"-//
A
ppl
e
//
D
T
D
PLIST
1
.
0
//
E
N"
"http://www.
a
ppl
e
.
c
om/
D
T
D
s/Prop
e
rtyList-
1
.
0
.
d
t
d
"
>
<
plist
v
e
rsion="
1
.
0
"
>
<
plist
v
e
rsion="
1
.
0
"
>
<
d
i
c
t
>
<
d
i
c
t
>
<
k
e
y
>
UIDesignRequiresCompatibility
<
/k
e
y
>
<
tru
e
/
>
<
k
e
y
>
CFBundleURLTypes
<
/k
e
y
>
<
k
e
y
>
CFBundleURLTypes
<
/k
e
y
>
<
a
rr
a
y
>
<
a
rr
a
y
>
<
d
i
c
t
>
<
d
i
c
t
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment