Created
March 8, 2013 05:55
-
-
Save mactive/5114487 to your computer and use it in GitHub Desktop.
Snow leopard Xcode Icon already includes gloss effects not work
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
As you already got your answer, for users of Xcode 4.2 (Snow leopard) Dinesh's solution won't work. Here you can right-click on the info.plist file, and open as source code. | |
Look for this, and replace <false/> with <true/> under <key>UIPrerenderedIcon</key> | |
<dict> | |
<key>CFBundlePrimaryIcon</key> | |
<dict> | |
<key>CFBundleIconFiles</key> | |
<array> | |
<string>iconNormal.png</string> | |
<string>iconRetina.png</string> | |
</array> | |
<key>UIPrerenderedIcon</key> | |
<true/> | |
</dict> | |
</dict> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment