memmons
memmons

Reputation: 40492

Xcode : Missing icons for iOS apps in Organizer's archives

If I choose "build and archive" from XCode, the Organizer is launched and I can see a list of my archived applications. I have 4 different applications (with several archives each), but the icon that's displayed in Organizer for one of the apps is missing -- there is a question mark icon instead. The app does have an associated icon and it validates and submits to the app store without any issues.

Why isn't Organizer picking up the icon correctly and how do I fix it?

Upvotes: 9

Views: 22162

Answers (7)

Vincent
Vincent

Reputation: 4409

Include in the info.plist for the key "Icon File" the value "Icon.png". Do not forget to also include the image in the container.

Upvotes: 2

Anil
Anil

Reputation: 2554

Those of you that have upgraded to Xcode 4.3 and are having problems with the Application Icons showing up in the Organizer Window under Archives, look at this posting which includes a solution:

Xcode 4.3 : missing icons for iOS apps in Organizer's archives

Upvotes: 1

Ginny
Ginny

Reputation: 3121

For XCode 4.2 :

Patrick Burleson's answer is correct, and worked for me. However, the icon that showed up in the organizer was still fuzzy/low-resolution after doing that. I fixed this by putting [email protected] in the "Item 0" slot of 'Icon Files', instead of putting Icon.png there as I had before. No idea why I should need to do that, but in any case, if someone else has that issue, that may be the way to fix it.

Upvotes: 0

Gilorien Barnhardt
Gilorien Barnhardt

Reputation: 1

When I had a missing icon in the organizer, I appended

.icns

to the Icon file name in the Info.plist file.

Upvotes: 0

imbear
imbear

Reputation: 11

I have the same problem, and I solved it by adding a "Icon file" in info.plist, and adding a "Icon files" after "Icon file", and the icon is fine in organizer. I think that might a parsing sequence problem.

Upvotes: 1

paicolman
paicolman

Reputation: 104

Not a bug, I think you need to have at least one for Iphone and a bigger one for ipad (although my app is only designed for iphone...). I replaced the "icon file" key with "icon files" in the plist file and put one 52x52, one 72x72 and also one 114x114.

Upvotes: 8

Stefan Arentz
Stefan Arentz

Reputation: 34935

I think it is a bug. I see the same for all my apps that I Build & Archive.

Upvotes: 2

Related Questions