Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App submission, icon size error due to forthcoming IOS7 release

I submitted my app to Apple for the first time. The app is for iPad only and compiled for IOS6. I got this reply from the submission process :

Invalid Image - For iOS applications, icons included in the binary submission must be in the PNG format

If your application supports the iPhone device family, you must include square icons of the following dimensions: 57x57 pixels and 120x120 pixels. If your application supports the iPad device family, you must include square icons of the following dimensions: 72x72 pixels, 76x76 pixels and 152x152 pixels

I read this morning that this is quite new. I always have good chance when for my first attempts.

I only used png image files of 72x72, for exemple icon_72.png. I understand that when I include a retina file, its name becomes [email protected] But what about the other resolutions? How should I name them or how can I manage this ?

like image 890
Funkycochise Avatar asked Sep 02 '13 13:09

Funkycochise


2 Answers

Apple mentioned in iOS 7 Human Interface Guidelines

Create different sizes of the app icon for different devices. If you’re creating a universal app, you need to supply app icons in all four sizes.

For iPhone and iPod touch both of these sizes are required:

120 x 120 pixels 60 x 60 pixels (standard resolution)

For iPad, both of these sizes are required:

152 x 152 76 x 76 pixels (standard resolution)

You can name these icons anything you want as long as you use the CFBundleIcons key to declare the names and you add the @2x suffix to the names of all high-resolution icons. You can use custom names because iOS chooses an icon based on whether its size is appropriate for the intended usage.

like image 61
Kalpesh Avatar answered Nov 15 '22 15:11

Kalpesh


If you are a photoshop user, you can download a template here: http://appicontemplate.com

There are photoshop actions included, that will automatically export all the formats you need.

To be on the safe side, use both the iOS 6 and iOS 7 template and include all the resolutions, you have been asked for.

like image 38
Tim Bodeit Avatar answered Nov 15 '22 16:11

Tim Bodeit