Adam Waite
Adam Waite

Reputation: 18845

Icon not appearing in Xcode archive?

My app icon isn't appearing in Xcode archives. I have them set in the plist and they are showing on the simulator, on the device and in the project settings. See the picture below:

enter image description here

How can i fix this? Im using the 4.3.1 by the way.

Thanks...

Upvotes: 5

Views: 7286

Answers (4)

Milktoast
Milktoast

Reputation: 9

You are missing your iTunesArtwork as Item 6 in Icon Files in your plist. Apparently, this is where the Archive window get its image from.

Upvotes: 0

Dominik Hadl
Dominik Hadl

Reputation: 3619

Don't forget on correct icon naming. And the Default.png shouldn't be in the .plist. Also check the target of the icon files.

Icon.png [email protected] Icon-72.png

In Xcode press

  1. Command+Shift+K and press Yes.

  2. Command+Shift+Alt+K and press Yes.

  3. The try building, running and Archiving.

Upvotes: 0

Van Du Tran
Van Du Tran

Reputation: 6892

Try this:

Delete all versions of your app from your device.

In Xcode, do "Command+Option+Shift+K" and say yes.

Try to archive again?

Btw, I don't think Default.png and [email protected] should be in your icon list.

Upvotes: 3

A-Live
A-Live

Reputation: 8944

Don't forget to add small icons and an App Store icon to the project.

Upvotes: 0

Related Questions