Reputation: 333
I'm having a problem uploading my app to the Apple App Store. It is saying that my icon/image size for iPad is too small. The size in the build is 52x52 and it is supposed to be 72x72. How can I resolve this?
My app is for both the iPhone and iPad.
Upvotes: 0
Views: 591
Reputation: 3073
Use my git hub repo with all the image sizes in to start from :
https://github.com/FattusMannus/iOS-Development-Image-Placeholders
Hope this helps
AH
Upvotes: 0
Reputation: 26390
Add a CFBundleIconFiles
key of type Array to your Info.plist
. The array should contain 2 string items: the filenames of the two icons. The OS will then automatically choose the correct icon for each platform based on their pixel dimensions.
You can keep the CFBundleIconFile
key and have it point to the icon file for the iPhone for 3.0/3.1 compatibility.
For more details go through http://developer.apple.com/library/ios/#qa/qa1686/
Upvotes: 1