Remove icon shine effect from Adobe Air iOS app?

How do you stop iTunes from adding a default glitter effect when compiling an iOS app using Adobe Air? Using Adobe Flash CS6.,.

+4
source share
2 answers

Add the following to the InfoAdditions element in the application descriptor file:

<InfoAdditions> <![CDATA[ <key>UIPrerenderedIcon</key> <true/> ]]> </InfoAdditions> 

from: http://help.adobe.com/en_US/air/build/WS901d38e593cd1bac1e63e3d129907d2886-8000.html

+5
source

This will require that you add the UIPrerenderedIcon logical key to the application info.plist file and set it to true.

To do this, follow these steps:

  • Change the extension of the .ipa file created by Flash CS6 to .zip.
  • Unzip the file and right-click to view the contents of the application, which should be located in the directory named "Payload".
  • Find and edit the info.plist file by adding the UIPrerenderedIcon key / value pair mentioned above.
-1
source

All Articles