Creating an iPhone App Icon Question

Hey I am about to release an app and now i have to make the icon. I will release it on iphone, android and ipad. I made a 512x512 icon and I wanted to know how to tell apple not to put the shine effects on it. In xcode you put code somewhere, but now that im using corona how do i tell them not to mess with my icon? and android as well [import]uid: 32524 topic_id: 11648 reply_id: 311648[/import]

In xcode, you would put that in your info.plist. So I believe you have to add that to your build.settings.

settings.iphone.plist["UIPrerenderedIcon ~ipad"] = true  

I haven’t tested this code yet but it should be right, or close to right. [import]uid: 11917 topic_id: 11648 reply_id: 42342[/import]

In build.settings you can put this one line;

[lua]UIPrerenderedIcon = true[/lua]

In case you aren’t sure where to put it, or others looking in the future aren’t, here is a complete build.settings file with it included;

[lua]settings =
{
orientation =
{
default = “landscapeRight”,
supported =
{
“landscapeRight”, “landscapeLeft”
},
},

iphone =
{
plist =
{
UIStatusBarHidden=true,
UIPrerenderedIcon = true
},
}

}[/lua]

Change it to false to DO gloss, or keep as true for NO gloss :slight_smile:

Peach [import]uid: 52491 topic_id: 11648 reply_id: 42393[/import]

Oh okay, thanks Peach! [import]uid: 32524 topic_id: 11648 reply_id: 42621[/import]