Required Icons

Hello Community, I saw that I have to make 3 icons (57x57, 114x114, 512x512), but how can I can configure it into the build.settings, here is what I have into my code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
settings = 
{ 
        orientation = 
        { 
                default = "landscapeLeft",
                supported = 
                { 
                        "landscapeLeft", "landscapeRight" 
                } 
        },
        
        iphone =
    {
        plist =
        {
                UIInterfaceOrientation = "UIInterfaceOrientationLandscapeLeft",
                        UISupportedInterfaceOrientations =
            {
                "UIInterfaceOrientationLandscapeLeft",
                "UIInterfaceOrientationLandscapeRight"
            },
            CFBundleIconFile = "Icon.png",
            CFBundleIconFiles = 
            {
                "Icon.png" , 
                "Icon@2x.png"
            },
            UIApplicationExitsOnSuspend = false,
            UIStatusBarHidden=true,
            UIPrerenderedIcon = true
        }
     }
}

The appstore icon is uploaded through the iTunes connect page where you create the new app and add the data there. you upload the 512X512 icon and the rest of the meta data.

In the app you need to supply the icons for the devices themselves and you use several sizes for different devices - iPad, iPhone, iPod Touch and the Android bunch.

you can also use an app called icon robot to do the hard work for you -
http://vimeo.com/24885192

Shahar Zrihen
iDevelop - creative technology

As Shahar said you need icons for each device.

In your case your settings are fine for iPhone and iPhone4(S).

Simple include Icon.png (57x57) and Icon@2x.png (114x114) in your project folder.

The 512x512 icon you will upload in iTunes Connect and doesn't need to be in the folder.

Peach :)

Oh! Thank you guys for the information, but besides that, is there something else to upload through iTunes Connect?

You just need to fill the metadata - Description, Title, app rating and prices etc...

Ok, thank you.

I do one large 512x512 image and let Iconify do the rest for me :)

views:1930 update:2012/2/7 8:40:54
corona forums © 2003-2011