简体   繁体   中英

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 icon_72@2x.png But what about the other resolutions? How should I name them or how can I manage this ?

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.

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.

Just to clarify what I did (with some delay, sorry)

As mentioned I added icon76.png icon76@2.png

and I modify the myapp-Info.plist adding the new icons in the "icon files" Array and it ended with :

  • Item 0 icon72.png
  • Item 1 icon72@2.png
  • Item 2 icon76.png
  • Item 3 icon76@2.png

I also had a small final issue with the png suffix that was capitalised : PNG

So thank you guys : there's always good help here !

FKY

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM