Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iTunesArtwork breaking release submit to app store

I have an iOS 4.3 iPhone app built in Xcode4 that I'm submitting through the Application Loader app. I keep getting this error:

Icon specified in the Info.plist not found under the top level app wrapper: iTunesArtwork

I do have the following set:

  • iTunesArtwork (JPEG with no extension) in root folder
  • iTunesArtwork reference in Resources file
  • 512x512 image size
  • 'Item 0; under 'Icon Files' array in info.plist

Far as I can tell, the above is exactly as it should be for the iTunesArtwork. Any ideas which step I missed?

like image 585
4thSpace Avatar asked Mar 19 '11 03:03

4thSpace


3 Answers

iTunesArtwork should be a PNG file and you shouldn't include it in the Icon Files in info.plist.

Everything you need to know about app icons can be found in the following Q&A article. http://developer.apple.com/library/ios/#qa/qa1686/_index.html

like image 188
benwong Avatar answered Oct 09 '22 19:10

benwong


You just include the iTunesArtwork (png with no extension) in the root folder of your project. Do not add it to your info.plist (this is unnessary and icons without extensions break Application Loader). Your CFBundleIconFiles should contain these icons only:

  • Icon.png
  • Icon-72.png (optional for iPad)
  • [email protected] (optional for Retina)
  • Icon-Small.png (optional for Search and Settings)
  • Icon-Small-50.png (optional for search on an iPad)
  • [email protected] (optional for Search and Settings)

(You can replace the word Icon with whatever you want)

The top three are the important ones, but since you already have the iTunesArtwork it isn't too hard to make the others.

You should also set your CFBundleIconFile to just Icon.png to support older iOS versions

like image 41
theChrisKent Avatar answered Oct 09 '22 18:10

theChrisKent


I think this blog will help you getting more details about current grapichs required for iOS app submission.

The iTunesArtwork - The Artwork need to do by every iOS Developer

thanks,

Naveen Shan

like image 1
Naveen Shan Avatar answered Oct 09 '22 19:10

Naveen Shan