0

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.

Michael Petrotta
  • 59,888
  • 27
  • 145
  • 179
sajwan
  • 333
  • 3
  • 14

3 Answers3

3

check the link1 link2 link3

Community
  • 1
  • 1
1

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/

visakh7
  • 26,380
  • 8
  • 55
  • 69
0

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

Andrew Hall
  • 3,058
  • 21
  • 30