code signing is a major pain. Apple has decided that they will have one generic error message (Code Sign error) no matter what is wrong with your code signing process. Its like trying to put a puzzle together and if any single piece is not in place you get the generic error message. Once everything is perfect, it will work.
Try this:
Go to iOS Dev Center (Provisioning Portal, click "App IDs" on left)
1) Check the App ID you are using and note the Bundle ID
2) Check the provisioning profile and make sure it points to this same App ID. Also make sure the profile is active and points to a valid certificate. Also make sure this profile is installed on your mac.
Go to iTunes Connect
3) make sure the app you are about to upload uses the same Bundle ID
Go to Xcode
4) Open your info.plist file and make sure the Bundle Identifier is the same Bundle ID
5) Open your targets (Under "Project") and make sure the Code Signing points to the right provisioning profile.
Last edited by RickSDK; 01-13-2012 at 05:11 PM.
|