I have developed a mac app, and am trying to upload it to the mac app store, but am running into difficulties. Every time i try and submit or validate in Organiser, it comes up with the following error:

"The product archive package's signature is invalid. Ensure that it is signed with your "3rd Party Mac Developer Installer" certificate."

I have signed it with my installer certificate, and the application certificate, have downloaded the Worldwide Developer Relations certificate, but it still refuses to work. I have tried many of the solutions on the internet, but with no joy.

link|improve this question
The code signing and provisioning process is a bit convoluted IMO; if you don't understand each step in detail then sometimes it's worth starting from scratch. Revoking and deleting all your certificates and profiles, and starting again. This can actually help you learn the process again, to aid future problem solving in this area. – MattyG Sep 15 '11 at 21:23
Okay, I'll try that now, thanks – Squidgy123 Sep 16 '11 at 6:19
Okay, i have tried that, i have tried copying all my code over to a new project, deleting all the certificates and profiles, revoking them on iTunes connect, but it still comes up with the same error, which is most infuriating. – Squidgy123 Sep 16 '11 at 15:07
feedback

1 Answer

I can suggest to try signing your app from command line, using the /Developer/usr/bin/codesign tool:

codesign -s "name of your signing cert" /path/to/MyApp.app

codesign has a number of options and a man page. It may help spotting the issue you are experiencing.

link|improve this answer
This does't work either i'm afraid, I have no idea what the problem is still – Squidgy123 Oct 16 '11 at 8:45
feedback

Your Answer

 
or
required, but never shown

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