Apple Watch Code Signing

I wrote an apple viewer app for my iOS app. Watch, Watch Extension, and iOS app have different bundleIDs. I wanted to send my application to testers through the fabric, but I could not archive my application due to problems with fake code. I could not solve the problem.

***Watch has conflicting provisioning settings. ***Watch is automatically signed for development, but a conflicting code signing identity iPhone Distribution has been manually specified. Set the code signing identity value to "iPhone Developer" in the build settings editor, or switch to manual signing in the project editor. Code signing is required for product type 'WatchKit App' in SDK 'watchOS 3.0' 

Are there any documents that clearly explain how code signing works? How can I solve the signature problem?

+7
ios iphone apple watch
source share
1 answer

To fix this, I went into each of the failed goals and selected the “General” tab, then got rid of it and checked “Automatically manage my signature”.

Then I reassembled the correct command and it worked. Hope this helps someone else.

+2
source share

All Articles