antiglare game icon?

So its supported modifying info.plist in the binary, does Corona support this feature?

http://discussions.info.apple.com/message.jspa?messageID=7614561 [import]uid: 6317 topic_id: 1292 reply_id: 301292[/import]

http://developer.anscamobile.com/forum/2010/05/29/build-settings [import]uid: 5712 topic_id: 1292 reply_id: 3493[/import]

I would send him here:

http://developer.anscamobile.com/content/application-configuration-options#Build_Configuration_
[import]uid: 6928 topic_id: 1292 reply_id: 3512[/import]

I tried following this instructions. my build file looks like this and the icon is still glarey.

settings = { plist= { UIPrerenderedIcon=true, UIHiddenStatusBar="YES", }, orientation = { default = "landscapeRight", content = {"landscapeRight", "landscapeLeft"}, supported = { "landscapeRight", "landscapeLeft", }, }, } [import]uid: 6317 topic_id: 1292 reply_id: 3655[/import]

This is mine… works (but I have it on false currently because the new icon I use looks better like that :slight_smile:

settings = {  
 orientation = {  
 default = "portrait",  
 supported = {  
 "portrait",  
 "portraitUpsideDown" }  
 },  
  
 iphone = {  
 plist= {  
 UIPrerenderedIcon=false,  
 UIStatusBarHidden=true  
 }  
 }  
}  

You may notice that the stuff goes into an iphone section … this will be your problem! [import]uid: 6928 topic_id: 1292 reply_id: 3656[/import]

I see, for ipad do I changed iphone to ipad? [import]uid: 6317 topic_id: 1292 reply_id: 3658[/import]

No ipad and iphone share this section…

This is all in detail documented at the link I sent as reference in Post #2 last sunday!

Here that link again:

http://developer.anscamobile.com/content/application-configuration-options#Build_Configuration_
[import]uid: 6928 topic_id: 1292 reply_id: 3659[/import]