I would like to include the file iTunesArtwork in my app bundle but I have an iPad and iPhone version of the app. The iPad version’s icon has the letters HD over it. How should I proceed to include both versions on the project and tell Xcode to include one image or the other, so the correct image is copied to each bundle.
Thanks.
OK. First of all, you should have 4 different files:
If your app is universal, the first three should be included in the app bundle, and everything will take care of itself as long as your Info.plist is created properly. If the app isn’t universal, there’s still no harm in including all three in the bundle.
In either case, you don’t need to include iTunesArtwork in your app bundle if you’re submitting to the App Store. You submit your 512×512 icon along with your app, and it will automatically be included in your bundle.
For Ad Hoc builds, including iTunesArtwork is entirely optional. If you want to include different iTunesArtwork files for two different targets, you can place the two files in different folders and include one in the first target, and the other one in the second.