开发者

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?


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


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)
  • Icon@2x.png (optional for Retina)
  • Icon-Small.png (optional for Search and Settings)
  • Icon-Small-50.png (optional for search on an iPad)
  • Icon-Small@2x.png (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


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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜