When i archived my app to upload to app store, app icon is being white. But in Xcode 4.2 everything is ok. In Xcode 4.3.2 app icon changes into white after archiving it. Xcode allows to upload to app store without any warning and error. Uploading is finished and waiting for review. I want to know, if Apple will reject my app for this?
Asked
Active
Viewed 2,791 times
3
-
1Will Apple reject your app: No. – Luke May 15 '12 at 13:24
-
1I think it's a bug in Xcode 4.3.2. [HERE](http://stackoverflow.com/questions/9800761/xcode-4-3-missing-icons-for-ios-apps-in-organizers-archives) is a same question. – Kjuly May 15 '12 at 13:31
-
1BTW, you __should NOT__ add iTunesArtwork in your info.plist's CFBundleIconFiles, though it'll show the icon in organizer's archives. – Kjuly May 15 '12 at 13:33
-
1Duplicated: http://stackoverflow.com/questions/9800761/xcode-4-3-missing-icons-for-ios-apps-in-organizers-archives and you will find the answer (use "xcode-select -switch ...") – viggio24 May 15 '12 at 13:35
-
2i have the same problem. didn't even try to solve it yet :) but application (update) normally passed validation and is in app store with correct icons – Rok Jarc May 15 '12 at 14:08
-
yes, me too. normally passed and validation with correct icons after uploading. Thanks for answering. :) – Fire Fist May 15 '12 at 14:29
-
Thanks. that duplicated question fixed my problem. :) – Fire Fist May 15 '12 at 14:33
-
same issue is in `Xcode 4.5 DP` also – geekay Sep 01 '12 at 07:07
2 Answers
6
I fixed with RMeijs answer in Here
The way is open terminal and type following code.
xcode-select -print-path
/Developer
sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
after that restart XCodes,All icons in Organizer are fine.
That answer from RMeijs.
I wrote this answer for easily to find.
-
1Yes this fixed it for me. I updated to Xcode 4.6.3 and I keep each version in its own directory so I used this: `/Applications/Xcode_4.6.3/Xcode.app/Contents/Developer` – jsherk Aug 22 '13 at 15:46
0
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.

Vincent
- 4,342
- 1
- 38
- 37