Reputation: 69
Hi :) i just done making an app.. but when i want to upload the binary file i got 3 fail
(application loader)
what can i do? thanks
Upvotes: 0
Views: 1364
Reputation: 15055
Here's my guesses on fixing your 3 issues. Correct me if I'm wrong on any of this guys.
You need to add your icon as a 57x57 .png file, and make sure that the icon value in info.plist matches icon.png.
Set your minimun OS requirement in info.plist or the build settings to be HIGHER or EQUAL to OS 3.2
Go to the developer provisioning portal: http://developer.apple.com/ios/manage/overview/index.action
Get a new Distribution certificate. You need to code sign with a distribution certificate in xcode, creating a release version. Then it won't give you an invalid signature message.
Upvotes: 0
Reputation: 5097
Take a look at this checklist. It helped me get apps submitted:
http://www.idev101.com/code/Distribution/checklist.html
Upvotes: 2