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?

link|improve this question

1  
2012 revival of the same problem here: stackoverflow.com/questions/9800761/… – Dirty Henry Mar 21 at 16:42
feedback

7 Answers

up vote 3 down vote accepted

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.

link|improve this answer
More than one icon file is not required. I have several iPad apps that only have one icon specified in the plist by the CFBundleIconFile key and their icons show up fine in organizer. – Answerbot Jan 6 '11 at 4:30
feedback

Not a bug, paicolman has it right. You need to define the Icon Files in the app's plist. I wrote a blog post on this:

http://bitbq.com/blog/2010/11/16/fixing-missing-icon-for-archived-applications-in-xcode-organizer/

link|improve this answer
feedback

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

link|improve this answer
Yeah I think it's a bug, at least in Xcode 4. Having the Icon Files in info.plist with the corresponding icon resolutions doesn't help. One of my apps that did show an icon in the Xcode 3.x organizer now has no icon in Xcode 4. – Daniel Dickison Apr 7 '11 at 20:04
feedback

I had to define "Icon file" in info.plist to get the icon to appear in Organizer. However, I'd rather not have to do this since Apple instructs us to leave that item blank (QA1686).

Is there another way to define the icon to be shown in Organizer?

link|improve this answer
feedback

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.

link|improve this answer
feedback

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

.icns

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

link|improve this answer
2  
I haven't found anything in the documentation to support even attempting this. – Answerbot Jul 18 '11 at 19:25
feedback

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 Icon@2x.png 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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.