Post marked as solved
Click to stop watching this thread.
You have stopped watching this post. Click to start watching again.
Post marked as solved with 2 replies, 0 views
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>