From ba8d6d7fdde93557adcf9aa808ab413b18c101b7 Mon Sep 17 00:00:00 2001 From: lkasso Date: Sat, 4 Jul 2026 22:30:40 -0700 Subject: [PATCH 1/2] Display the app as "MetaWear" on the home screen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The target/product is named MetaWearApp, and with no CFBundleDisplayName the home-screen label fell back to CFBundleName = $(PRODUCT_NAME) = "MetaWearApp". Set the display name explicitly — the App Store listing name lives in App Store Connect and was never affected, but the icon label ships in the binary. Co-Authored-By: Claude Opus 4.8 --- Apps/MetaWear/Info.plist | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Apps/MetaWear/Info.plist b/Apps/MetaWear/Info.plist index 88fd70e..0751a1d 100644 --- a/Apps/MetaWear/Info.plist +++ b/Apps/MetaWear/Info.plist @@ -4,6 +4,8 @@ CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + MetaWear CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier From 37843c8eaac6ec1bff9064de737b36500606c71e Mon Sep 17 00:00:00 2001 From: lkasso Date: Sat, 4 Jul 2026 22:40:04 -0700 Subject: [PATCH 2/2] Ship under the existing App Store record's bundle ID MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The live MetaWear app (Apple ID 1547334547) ships as com.mbientlab.MetaWearApp — not com.mbientlab.MetaWear as this project assumed. App Store Connect routes uploads strictly by bundle ID, so the mismatch made Xcode try to CREATE a new app record (and collide with the existing "MetaWear" name) instead of attaching the build as the v10.0 update. The iCloud container stays iCloud.com.mbientlab.MetaWear: container identifiers are independent of bundle IDs and pinned explicitly in the entitlements, so the CloudKit Production schema already deployed there remains valid. Co-Authored-By: Claude Opus 4.8 --- Apps/MetaWear/MetaWearApp.xcodeproj/project.pbxproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Apps/MetaWear/MetaWearApp.xcodeproj/project.pbxproj b/Apps/MetaWear/MetaWearApp.xcodeproj/project.pbxproj index cb89601..7105165 100644 --- a/Apps/MetaWear/MetaWearApp.xcodeproj/project.pbxproj +++ b/Apps/MetaWear/MetaWearApp.xcodeproj/project.pbxproj @@ -429,7 +429,7 @@ "@executable_path/Frameworks", ); MARKETING_VERSION = 10.0; - PRODUCT_BUNDLE_IDENTIFIER = com.mbientlab.MetaWear; + PRODUCT_BUNDLE_IDENTIFIER = com.mbientlab.MetaWearApp; PRODUCT_MODULE_NAME = MetaWearApp; PRODUCT_NAME = MetaWearApp; STRING_CATALOG_GENERATE_SYMBOLS = YES; @@ -466,7 +466,7 @@ "@executable_path/Frameworks", ); MARKETING_VERSION = 10.0; - PRODUCT_BUNDLE_IDENTIFIER = com.mbientlab.MetaWear; + PRODUCT_BUNDLE_IDENTIFIER = com.mbientlab.MetaWearApp; PRODUCT_MODULE_NAME = MetaWearApp; PRODUCT_NAME = MetaWearApp; STRING_CATALOG_GENERATE_SYMBOLS = YES;