Tumblelog by Soup.io
Newer posts are loading.
You are at the newest post.
Click here to check if anything new just came in.

May 06 2010

17:25

So how do you deal with iTunesArtwork? - iPhone Dev SDK Forum

These instructions worked for me:
$ output="Releases/$(date)"
$ mkdir -p "$output"
$ mkdir -p Payload/Payload
$ cp -Rp build/Release-iphoneos/MyApp.app Payload/Payload
$ cp MyApp.iTunesArtwork.png Payload/iTunesArtwork
$ ditto -c -k Payload "$output/MyApp.ipa"
$ rm -rf Payload