pjv
pjv

Reputation: 183

Error when trying to validate iOS app: iPhone/ipod info.plist: Unable to verify icon dimensions, no Icon found. You must define CFBundleIcons

I know others have had this problem. I have tried everything, I think I am overlooking something simple. I can't post a screenshot of my info.plist file, but all of the icon files are capitalized and all the .png file names match what is in the icon files array in the -info.plist file. Can anyone help please?

http://i45.tinypic.com/amb15i.png

Upvotes: 1

Views: 607

Answers (1)

iDev
iDev

Reputation: 23278

Check this Apple documentation on icon files and this Mobile HIG on Icons.

This is what mentioned in this old link from Apple:

enter image description here

So please correct all the icons and its names as per the documentation. Basically the 57x57 icon title will be Icon.png and for @2x, [email protected]. For 72x72 icon, the title should be Icon-72.png. Similarly change the other titles as well.

Here is a blog on the Icon names.

Upvotes: 1

Related Questions