Skip to content

Commit 55835ff

Browse files
committed
chore: Update Xcode project settings and version
- Increment the project and bundle version from 18 to 19. - Change `CODE_SIGN_STYLE` from `Automatic` to `Manual`. - Set specific provisioning profiles for Debug (`NoteDelight_Development_Profile`) and Release (`NoteDelight_Distribution_Profile`) builds. - Specify code signing identities for `iphoneos` SDK.
1 parent 144d38f commit 55835ff

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

app/iosApp/iosApp.xcodeproj/project.pbxproj

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -468,10 +468,12 @@
468468
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
469469
CLANG_ENABLE_MODULES = YES;
470470
CODE_SIGN_IDENTITY = "Apple Development";
471-
CODE_SIGN_STYLE = Automatic;
472-
CURRENT_PROJECT_VERSION = 18;
471+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
472+
CODE_SIGN_STYLE = Manual;
473+
CURRENT_PROJECT_VERSION = 19;
473474
DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\"";
474-
DEVELOPMENT_TEAM = H7L7R3VNZ4;
475+
DEVELOPMENT_TEAM = "";
476+
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = H7L7R3VNZ4;
475477
ENABLE_PREVIEWS = YES;
476478
GENERATE_INFOPLIST_FILE = NO;
477479
INFOPLIST_FILE = iosApp/Info.plist;
@@ -493,6 +495,7 @@
493495
PRODUCT_BUNDLE_IDENTIFIER = com.softartdev.notedelight;
494496
PRODUCT_NAME = "$(TARGET_NAME)";
495497
PROVISIONING_PROFILE_SPECIFIER = "";
498+
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = NoteDelight_Development_Profile;
496499
SWIFT_OBJC_BRIDGING_HEADER = "iosApp-Bridging-Header.h";
497500
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
498501
SWIFT_VERSION = 5.0;
@@ -507,10 +510,12 @@
507510
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
508511
CLANG_ENABLE_MODULES = YES;
509512
CODE_SIGN_IDENTITY = "Apple Development";
510-
CODE_SIGN_STYLE = Automatic;
511-
CURRENT_PROJECT_VERSION = 18;
513+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
514+
CODE_SIGN_STYLE = Manual;
515+
CURRENT_PROJECT_VERSION = 19;
512516
DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\"";
513-
DEVELOPMENT_TEAM = H7L7R3VNZ4;
517+
DEVELOPMENT_TEAM = "";
518+
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = H7L7R3VNZ4;
514519
ENABLE_PREVIEWS = YES;
515520
GENERATE_INFOPLIST_FILE = NO;
516521
INFOPLIST_FILE = iosApp/Info.plist;
@@ -532,6 +537,7 @@
532537
PRODUCT_BUNDLE_IDENTIFIER = com.softartdev.notedelight;
533538
PRODUCT_NAME = "$(TARGET_NAME)";
534539
PROVISIONING_PROFILE_SPECIFIER = "";
540+
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = NoteDelight_Distribution_Profile;
535541
SWIFT_OBJC_BRIDGING_HEADER = "iosApp-Bridging-Header.h";
536542
SWIFT_VERSION = 5.0;
537543
TARGETED_DEVICE_FAMILY = "1,2";
@@ -545,7 +551,7 @@
545551
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
546552
CLANG_ENABLE_MODULES = YES;
547553
CODE_SIGN_STYLE = Automatic;
548-
CURRENT_PROJECT_VERSION = 18;
554+
CURRENT_PROJECT_VERSION = 19;
549555
DEBUG_INFORMATION_FORMAT = dwarf;
550556
DEVELOPMENT_TEAM = H7L7R3VNZ4;
551557
GENERATE_INFOPLIST_FILE = YES;
@@ -569,7 +575,7 @@
569575
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
570576
CLANG_ENABLE_MODULES = YES;
571577
CODE_SIGN_STYLE = Automatic;
572-
CURRENT_PROJECT_VERSION = 18;
578+
CURRENT_PROJECT_VERSION = 19;
573579
DEVELOPMENT_TEAM = H7L7R3VNZ4;
574580
GENERATE_INFOPLIST_FILE = YES;
575581
IPHONEOS_DEPLOYMENT_TARGET = 14.1;
Binary file not shown.

app/iosApp/iosApp/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<key>CFBundleShortVersionString</key>
2525
<string>7.0</string>
2626
<key>CFBundleVersion</key>
27-
<string>18</string>
27+
<string>19</string>
2828
<key>LSRequiresIPhoneOS</key>
2929
<true/>
3030
<key>UIApplicationSceneManifest</key>

0 commit comments

Comments
 (0)