Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
2012 revival of the same problem here: stackoverflow.com/questions/9800761/… – Dirty Henry Mar 21 '12 at 16:42

7 Answers

up vote 5 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.

share|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
In XCode 4.3.2, my plist file has three entries "Icon file", "Icon files", and "Icon files (iOS 5)". Since I'm building a universal app (iPhone/iPad/iPodTouch) and targeting iOS 4.3 from the iOS 5.1 SDK (latest stable), it's no surprise I'm getting a few icon warnings with all these different configurations! Archive Build is the only build that complains so far! – mda May 29 '12 at 0:28
I've identified the two problems keeping my Archive Build from succeeding. For whatever reason, the Archive build found lower-cased versions of icons "icon.png" instead of "Icon.png" in a 3rd-party library template. My solution is to "git rm" those files. I also got a warning for including landscape launch images when that mode is disabled for now because of a CSS rendering issue...Hopefully just portrait mode is OK with Apple... – mda May 29 '12 at 0:56
I found a third build problem, the build step "Copy Bundle Resources" can interfere with your icons! My project uses PhoneGap/Cordova, and it added a default copy step that stomps all over my icons and breaks the build even when I delete theirs! Solution: Remove the extra copy build step. – mda May 29 '12 at 1:23

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/

share|improve this answer

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

share|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

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.

share|improve this answer

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

share|improve this answer

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

.icns

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

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

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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