I've been dealing with an issue for a while. The issue is that when I submit my mac app to the app store I'm always getting invalid binary and they are saying it's because of an invalid signature. And that I should make sure it's signed with the installer certificate which it is.

Here is the complete message from them:

Dear Developer,

We have discovered one or more issues with your recent binary submission for "Mini Week". The following issues will need to be corrected in order for your application to proceed to review:

Invalid Signature - This error occurs when you have signed your app's installer incorrectly. There are two certs required for this process: the "3rd Party Mac Developer Application" cert and the "3rd Party Mac Developer Installer" cert. When signing your package, you need to ensure that you are using the Installer cert to sign your package. Ensure that you are specifying this cert when submitting your app via the Xcode Organizer or when running productbuild from the command line.

Once you have corrected these issues, go to the app's version details page (found in the Manage Your Applications module of iTunes Connect) and click Ready to Submit Binary. Proceed through the submission process until the app's status is Waiting for Upload. You can then use Application Loader to upload the corrected binary.

Regards,

The iTunes Store Team

I've revoked and reinstalled my certificates and development providing profile but that doesn't seem to help so I'm assuming that's not the issue.

Is there something else that could cause this? Maybe I need to make sure something is correct in my build settings or something like that? But if so what? :)

Thank you in advance!

link|improve this question

please post more informations. you can get more details on the mail after your app was rejected – xhan Sep 7 '11 at 5:41
I've added the mail I got from Apple. – inFever Sep 7 '11 at 5:51
Are you sure you are signing your app when building with the developer certificate and signing the app bundle with the installer certificate? – Abizern Sep 7 '11 at 5:54
As far as I know I'm signing the package with the installer certificate when I'm submitting it via the submit button in Xcode Organizer. Is there something I need to do before that? – inFever Sep 7 '11 at 15:34
feedback

1 Answer

up vote 1 down vote accepted

Actually, the signing process does not happen when you submit the app from Code Organizer. Conversely, it may happen when you build your app for deployment, but only if you selected the appropriate cert on the "Code Signing Identity" in the target build settings.

Note that you could also manually sign an existing app via command line:

codesign -s "<name of your signing cert>" -fv "<path/to/your/app/bundle>" -o kill,hard

where <name of your signing cert> is the canonical name of your 3rd Party Mac Developer Installer cert. The optional -o kill,hard enforces the code signature for the OS to allow user to launch the application: if you omit this option, an user could open the app bundle, delete the code sign folder, and copy the app on a different machine. With this option, your app bundle will only launch on the authorized machine, and will not run when the signature folder is not present.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.