Dmitry
Dmitry

Reputation: 14622

'Icon already includes gloss effects' doesn't work on iOS 6 compiled on xCode 5 with SDK 7

Icon already includes gloss effects doesn't work on iOS 6 compiled on xCode 5 with SDK 7. How to fix this issue? Image assets on the project are enabled.

Upvotes: 20

Views: 7037

Answers (3)

Anna Billstrom
Anna Billstrom

Reputation: 2492

Similar to @sc0rp10n, Xcode 5 has it listed in the plist as:

Gloss effects pre-rendered in plist

Upvotes: 3

sc0rp10n
sc0rp10n

Reputation: 1118

If you're not wanting to switch to the asset catalog, you can add the UIPrerenderedIcon key to your plist under the CFBundlePrimaryIcon dictionary (then clean): UIPrerenderedIcon

Upvotes: 18

Alexis C.
Alexis C.

Reputation: 4918

As iOS7 is not under NDA anymore, here is the answer :

In Xcode 5 select Images.xcassets followed by your icon set. There is a "pre-rendered icon" setting that removes the gloss

assets settings

Upvotes: 75

Related Questions