I am trying to submit an app which is only for iPhone.

The error showed " iPhone/iPod Touch: Icon.png: icon dimensions (0 x 0) don't meet the size requirement. The icon file must be 57x57 pixels, in .png format.

May I know why this happens? I try to change the plist setting and i am sure my icon is at the right size. It shows perfectly on my iPhones.

I have searched for few post here but still cannot find the solution.

Could anyone knows the problem?

Thanks

link|improve this question

feedback

4 Answers

up vote 51 down vote accepted

According to this solution https://devforums.apple.com/message/612098#612098 make this steps:

  1. Install ApplicationLoader_2.5.1.dmg (Just install it, you don't need to launch/use it)
  2. Quit & restart Xcode
  3. Clean Project
  4. Archive (again)
  5. Validate/Submit now works

This solution fixed my problems with submission.

link|improve this answer
8  
This is the right answer. (this is new bug on LION 10.7.3) – xhan Feb 7 at 10:48
Thanks I finally can solve it! – Clarence Feb 7 at 11:03
Worked for me! Thanks a lot! – thomax Feb 10 at 14:38
2  
Apple's Dev Tools quality is getting worse. Xcode is one big mem hog - 4.2.1 on 10.7.3 non-SSD 4GB OS is slower then snail mail ;) – delirus Feb 13 at 21:35
I couldn't believe that this would actually work cos I thought the Application Loader was built into Xcode, and since I hade the latest Xcode it should have all worked. BUT it did work! YAY! – DonnaLea Feb 17 at 1:54
show 5 more comments
feedback

Tomasz's solution is fine, but there's a much simpler solution: select your Icon.png and Icon@2x.png, and in the right-hand side inspector, change File Type from "PNG" to "Icon".

After this change, you can Archive and submit your application as you normally would directly within XCode.

link|improve this answer
thank you, this fix my problem – AP inc. Feb 24 at 15:52
very nice, thanks a lot – Keller Feb 26 at 8:13
2  
This worked for me on Lion 10.7.3 and Xcode 4.2.1, thanks a lot. – craig Feb 27 at 13:52
Excellent, thank you! – Nick Forge Feb 28 at 13:13
I was pulling my hair out, but this worked. Thanks. – Echilon Mar 2 at 15:14
show 1 more comment
feedback

Have to try to Clean & Rebuild ? in xCode, try to right click on the App Icon > choose "Delete", then re-pick the Icon.

Make sure it is PNG , non-interlaced.

link|improve this answer
feedback

You need to have (at minimum) a 57x57px icon and a 114x114px icon. Typically these will be called Icon.png and Icon@2x.png.

Then in your info.plist, there is an array called 'Icon files'. You need to add both image names to that array.

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.