Skip to content

Commit bf56760

Browse files
chore: Move team ID to Config.xcconfig for dynamic configuration
1 parent 9ceadd5 commit bf56760

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/pr-check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ jobs:
8989
desktop_package_name: 'cmp-desktop' # <-- Change Your Desktop Package Name
9090
web_package_name: 'cmp-web' # <-- Change Your Web Package Name
9191
ios_package_name: 'cmp-ios' # <-- Change Your iOS Package Name
92-
build_ios: false # <-- Change to 'false' if you don't want to build iOS
92+
build_ios: true # <-- Change to 'false' if you don't want to build iOS

cmp-ios/Configuration/Config.xcconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
TEAM_ID=
1+
TEAM_ID=L432S2FZP5
22
BUNDLE_ID=cmp.ios
33
APP_NAME=iOSApp

cmp-ios/iosApp.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@
321321
CODE_SIGN_IDENTITY = "Apple Development";
322322
CODE_SIGN_STYLE = Automatic;
323323
DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\"";
324-
DEVELOPMENT_TEAM = L432S2FZP5;
324+
DEVELOPMENT_TEAM = "${TEAM_ID}";
325325
ENABLE_PREVIEWS = YES;
326326
FRAMEWORK_SEARCH_PATHS = (
327327
"$(inherited)",
@@ -351,7 +351,7 @@
351351
CODE_SIGN_IDENTITY = "Apple Development";
352352
CODE_SIGN_STYLE = Automatic;
353353
DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\"";
354-
DEVELOPMENT_TEAM = L432S2FZP5;
354+
DEVELOPMENT_TEAM = "${TEAM_ID}";
355355
ENABLE_PREVIEWS = YES;
356356
FRAMEWORK_SEARCH_PATHS = (
357357
"$(inherited)",

0 commit comments

Comments
 (0)