Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I make my ad hoc iPhone application's icon show up in iTunes?

I've got an iPhone app with icon file Icon.png.

This icon shows up properly when the app is on the phone itself, but it doesn't show up in the applications pane in iTunes.

What do I need to do to get it to show up properly?

like image 435
Lawrence Johnston Avatar asked Oct 06 '08 05:10

Lawrence Johnston


People also ask

How do I change the icons on my Apple update?

Tap the placeholder app icon. From the drop-down menu, select Take Photo, Choose Photo, or Choose File, depending on where your replacement app icon image is located. Select your replacement image. In the text field, rename the app as you want it to appear on the home screen.

How do I get app icons for iOS?

Type “Open app” in the search bar. Tap “App” to select which icon to replace. Tap “Add to Home Screen.” You'll now see a preview of the icon (which will be a standard, uninteresting icon that Shortcuts automatically adds).


2 Answers

The cleanest way to do this is described in the official Apple documentation, in a section called Publishing Applications for Testing. Below is the exact instructions given to you on that page:


The iTunes artwork your testers see should be your application’s icon. This artwork must be a 512 x 512 JPEG or PNG file named iTunesArtwork. Note that the file must not have an extension.

After generating the file of your application’s icon, follow these steps to add it to your application:

  1. Open your project in Xcode.
  2. In the Groups & Files list, select the Resources group.
  3. Choose Project > Add to Project, navigate to your iTunesArtwork file, and click Add.
  4. In the dialog that appears, select the ”Copy items” option and click Add.

Note that the PNG or JPEG file is just 'iTunesArtwork', with no suffix.

If you try to copy the file into the application bundle after you have built it, it will break the app signing, and you will get a verification error when trying to sync it to your device. Ensure that the artwork file is included in the "Copy Bundle Resources" folder, within your project's target in XCode (step 4, above).

like image 80
Nick Ludlam Avatar answered Oct 05 '22 16:10

Nick Ludlam


Create a 512x512 png of your icon, name it "iTunesArtwork" (no extension, no quotes) and add it to your project under Resources. Then build.

More details here:

http://developer.apple.com/library/ios/#documentation/Xcode/Conceptual/ios_development_workflow/000-Introduction/introduction.html

like image 33
Jason Moore Avatar answered Oct 05 '22 15:10

Jason Moore