Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iTunesArtwork png files needed in xCode 5?

Tags:

In xCode 5 we have the ability to use the xcassets file to catalogue our app images. It appears that there is not a place for iTunesArtwork and iTunesArtwork2x files. Does this mean that these files are no longer needed in xCode 5? If they are needed, should we list them in the plist file? I had removed the icons list in the plist file and was hoping not to have to add it back again.

like image 715
SAHM Avatar asked Nov 06 '13 00:11

SAHM


2 Answers

Some time ago you were supposed to include your icon in large format 512x512 and 1024x1024 in your bundle when submitting an app to the AppStore, But after some changes in Xcode and iTunesConnect this is no longer necessary, you upload these two files directly to iTunes Connect and are not required in your bundle anymore.

like image 100
Ponchotg Avatar answered Oct 07 '22 23:10

Ponchotg


The iTunesArtwork file is still used in AdHoc (and enterprise) distribution according to the official Apple documentation:

https://developer.apple.com/library/content/qa/qa1686/_index.html

It is (as Ponchotg says) not necessary for appstore builds.

like image 26
JosephH Avatar answered Oct 08 '22 00:10

JosephH