Post

Replies

Boosts

Views

Activity

Reply to Bundle ID for watch extension not matching parent app
After much trial and error, I landed on this. The prior replies helped but I needed a slight modification: iPhone app bundle ID: com.myname.myapp Watch app bundle ID: com.myname.myapp.watchkitapp Watch extension bundle ID: com.myname.myapp.watchkitextension In WatchOS Info.plist <key>WKCompanionAppBundleIdentifier</key> <string>com.myname.myapp</string> In watcOS Extension Info.plist <key>NSExtension</key> <dict> <key>NSExtensionAttributes</key> <dict> <key>WKAppBundleIdentifier</key> <string>com.myname.myapp.watchkitapp</string> ... </dict>
Jul ’22