Hi :) i just done making an app.. but when i want to upload the binary file i got 3 fail
- Icon specified in the info.plist not found under top level app wrapper: icon.png
- Iphone/Ipod Touch: info.plist: Unable to verify icon dimensions, no icon found. You MinimumOSVersion is below 3.2, so you must define CFBundleIconFil...
- Application failed codesign verification. The signature was invalid, or it was not signed with an Apple submission cerficate
(applica开发者_StackOverflow中文版tion loader)
what can i do? thanks
Take a look at this checklist. It helped me get apps submitted:
http://www.idev101.com/code/Distribution/checklist.html
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.
精彩评论