Reputation: 885
I have already provided both Icon.png (for iPhone) and [email protected] (for iPhone4). The thing is, when I just provided Icon.png of size 144x144, the console outputs this message:
"iPhone/iPod Touch: Icon.png: icon dimensions (144 x 144) don't meet the size requirements. The icon file must be 57x57 pixels, in .png format (-19014)"
But this renders icon in both iPhone and iPhone4 well.
I want to be able to remove this issue so I reduced the size for Icon.png to 57x57 and created [email protected] with size 144x144. After this, icon for iPhone seems fine but iPhone4 uses Icon.png and the icon renders a low res image.
Any suggestions? Thanks!
Upvotes: 3
Views: 2954
Reputation: 2579
The icon size will be 114X114 and not 144X144. Apple provides the following documentation for this: http://developer.apple.com/library/ios/documentation/userexperience/conceptual/mobilehig/IconsImages/IconsImages.html
So there will be 2 icons:
icon.png with 57X57 [email protected] with 114X114
Upvotes: 0
Reputation: 885
I just found this solution: http://developer.apple.com/library/ios/qa/qa2010/qa1686.html#IPHONEADDITEMS
It works!
Upvotes: 0
Reputation: 8981
Heres the images you need to make to support all current devices
From my blog http://kgutteridge.co.uk/blog/2010/07/04/icon-sizes-filenames-for-ios-devices/
Upvotes: 6
Reputation: 1838
you need double resolution image for iphone4 and the double of 57X57 is 114X114 and not 144X144.
Upvotes: 2