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:

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  
 }  
 }  
}  

My doubt is, CFBundleIconFile is the app icon or the app store icon? [import]uid: 81091 topic_id: 20547 reply_id: 320547[/import]

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 [import]uid: 13553 topic_id: 20547 reply_id: 80671[/import]

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 :slight_smile: [import]uid: 52491 topic_id: 20547 reply_id: 80793[/import]

Oh! Thank you guys for the information, but besides that, is there something else to upload through iTunes Connect? [import]uid: 81091 topic_id: 20547 reply_id: 83572[/import]

You just need to fill the metadata - Description, Title, app rating and prices etc… [import]uid: 13553 topic_id: 20547 reply_id: 83574[/import]

Ok, thank you. [import]uid: 81091 topic_id: 20547 reply_id: 83581[/import]

I do one large 512x512 image and let Iconify do the rest for me :slight_smile: [import]uid: 10389 topic_id: 20547 reply_id: 83696[/import]