Xcode 8 Code Encoding Error

I have Xcode 8 installed on OSX el Captain.

I have a sticker that works on a simulator. However, when I create it on me errors, as shown below:

Check Dependencies A StickerPackExtension signature requires a development team. Select the developer team in the project editor. Signing code is required for the product type "Application Extension" in the SDK "iOS 10.0"

Show only recent errors Signing StickerPackExtension requires a development team. Select the developer team in the project editor.

Code signing is required for the product type "Application Extension" in the SDK "iOS 10.0"

I tried to create the certificates again, clean the assembly, restart Xcode, but the error still exists. I also tried "automatic signing management" and changed the settings manually.

Please, help!

+5
source share
3 answers

The problem for me was choosing the signature profile command for both Goals: extension and shell application.

This is not obvious, but if you open the drop-down list to the left of General with the name of your application and select StickerPackExtension , you can set the command for extension.

Source: Apple Dev Forums: Xcode 8 Team Error Stickers

+2
source

Have you chosen a certificate signing for all of your modules (if you use CocoaPods) and all of your frameworks included in the solution?

0
source

I needed to go to Xcode -> Preferences -> Accounts . Select the Apple Developer ID you are using for this application. Then select team in the box below that displays the teams. Click the View Details button, and then on the new screen, click the Download All Profiles button. This will reload your profiles.

This fixed it for me.

0
source

All Articles