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

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

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

In build.settings you can put this one line;

UIPrerenderedIcon = true

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;

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
settings =
{
        orientation =
        {
                default = "landscapeRight",
                                supported =
                                        {
                                                         "landscapeRight", "landscapeLeft"
                                        },
        },
 
        iphone =
        {
                plist =
                {
                                UIStatusBarHidden=true,
                        UIPrerenderedIcon = true
                },
        }
        
        
}

Oh okay, thanks Peach!

views:1642 update:2011/9/20 13:12:00
corona forums © 2003-2011