Skip to content

Commit 2858f0c

Browse files
katipallyCopilot
andcommitted
fix: use Production CloudKit on Mac; bump iOS companion to 2.4.1
Mac (Release entitlements): - Add com.apple.developer.icloud-container-environment = Production Developer ID Mac apps default to Development CloudKit without this key, causing a complete environment mismatch with iOS TestFlight (which always uses Production). This was why iOS showed 'Mac not visible' — they were writing/reading from different CloudKit DBs. The DoomCoder Mac DevID provisioning profile already authorises icloud-container-environment: Production, so no profile change needed. iOS companion: - Bump MARKETING_VERSION 2.4.0 → 2.4.1 - Bump CURRENT_PROJECT_VERSION 1 → 2 (TestFlight requires a unique build number per upload) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 6ba8dc9 commit 2858f0c

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

DoomCoder/DoomCoder.Release.entitlements

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
<array>
77
<string>iCloud.com.doomcoder.app</string>
88
</array>
9+
<key>com.apple.developer.icloud-container-environment</key>
10+
<string>Production</string>
911
<key>com.apple.developer.icloud-services</key>
1012
<array>
1113
<string>CloudKit</string>

DoomCoderCompanion/DoomCoderCompanion.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@
424424
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
425425
CODE_SIGN_STYLE = Automatic;
426426
COPY_PHASE_STRIP = NO;
427-
CURRENT_PROJECT_VERSION = 1;
427+
CURRENT_PROJECT_VERSION = 2;
428428
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
429429
DEVELOPMENT_TEAM = A9P2388PHM;
430430
ENABLE_NS_ASSERTIONS = NO;
@@ -439,7 +439,7 @@
439439
GCC_WARN_UNUSED_FUNCTION = YES;
440440
GCC_WARN_UNUSED_VARIABLE = YES;
441441
IPHONEOS_DEPLOYMENT_TARGET = 26.0;
442-
MARKETING_VERSION = 2.4.0;
442+
MARKETING_VERSION = 2.4.1;
443443
MTL_ENABLE_DEBUG_INFO = NO;
444444
MTL_FAST_MATH = YES;
445445
OTHER_LDFLAGS = "$(inherited) -ObjC";
@@ -505,7 +505,7 @@
505505
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
506506
CODE_SIGN_STYLE = Automatic;
507507
COPY_PHASE_STRIP = NO;
508-
CURRENT_PROJECT_VERSION = 1;
508+
CURRENT_PROJECT_VERSION = 2;
509509
DEBUG_INFORMATION_FORMAT = dwarf;
510510
DEVELOPMENT_TEAM = A9P2388PHM;
511511
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -526,7 +526,7 @@
526526
GCC_WARN_UNUSED_FUNCTION = YES;
527527
GCC_WARN_UNUSED_VARIABLE = YES;
528528
IPHONEOS_DEPLOYMENT_TARGET = 26.0;
529-
MARKETING_VERSION = 2.4.0;
529+
MARKETING_VERSION = 2.4.1;
530530
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
531531
MTL_FAST_MATH = YES;
532532
ONLY_ACTIVE_ARCH = YES;

0 commit comments

Comments
 (0)