IOS: Code Signing with Cocoapods

Just by switching my app to use_frameworks

using Cocoapods

, everything builds fine and works great on the phone and our CI server. But when uploading ipa

to iTunes Connect, I get the error

Invalid Code Signing Rights. Your app package signature contains code signing rights that are not supported on iOS. In particular, the value "[CORRECT_APPLICATION_IDENTIFIER]" for the key "Application ID" in "[PATH_TO_PODS_FRAMEWORK]" is not supported. This value should be a string starting with your TEAMID followed by a period "." Followed by the package ID.

This error occurs for any framework used in the application (I have 10 modules in the application and I have 10 errors on the screen), not sure what I should do. any ideas?

+3


source to share





All Articles