iPhone icon doesn't have gloss

Hi,

I want to have the gloss effect of the iPhone icon of my app, but it doesn’t appear.
My buildsettings.lua:

settings = { iphone = { plist = { CFBundleIconFile = "Icon.png", CFBundleIconFiles = { "Icon.png" , "Icon@2x.png" , "Icon-72.png" , } }, }, }

SDK Version: 2011.704
If I remember correctly in a previous release of the SDK it did work. Any ideas what’s wrong?

Greets

PS:
I did try it once to explicitly activate the icon through

UIPrerenderedIcon = false

but it didn’t work either. [import]uid: 68079 topic_id: 19696 reply_id: 319696[/import]

I also had a problem with this once.

You have to do 2 things for this to work

  1. You must set UIPrerenderedIcon = false in build.settings, as the default is set to true.
  2. You must delete the app from the device before installing your new version.

After doing the above it should work. [import]uid: 70847 topic_id: 19696 reply_id: 76185[/import]

Alright, thanks. They changed the default. Now it works. [import]uid: 68079 topic_id: 19696 reply_id: 76187[/import]