Build.settings

Can someone help me write a proper build.settings file?

Needs to work with both Android and iOS
Needs to only support landscape orientations
iOS 4.3.0+
Hide status bar
Does not exit on suspend
icon prerendered
Android needs internet

Thanks very much. [import]uid: 104852 topic_id: 27993 reply_id: 327993[/import]

settings =  
{  
 iphone =  
 {  
 plist=  
 {  
 UIInterfaceOrientation = "UIInterfaceOrientationLandscapeRight",  
 UISupportedInterfaceOrientations =  
 {  
 "UIInterfaceOrientationLandscapeLeft",  
 "UIInterfaceOrientationLandscapeRight"  
 },  
 MinimumOSVersion="4.3",  
 UIApplicationExitsOnSuspend = true,  
 UIPrerenderedIcon="YES",  
 UIStatusBarHidden=true,  
 CFBundleIconFile = "Icon.png",  
 CFBundleIconFiles = {  
 "Icon.png" ,   
 "Icon@2x.png" ,   
 "Icon-72.png" ,   
 "Icon-72@2x.png",  
 "Icon-small-50.png" ,   
 "Icon-small.png" ,   
 "Icon-small@2x.png"  
 },  
 },  
 },  
 orientation =  
 {  
 default = "landscapeRight",  
 supported =  
 {  
 "landscapeRight", "landscapeLeft"  
 },  
 },  
 androidPermissions =  
 {  
 "android.permission.INTERNET"  
 },  
}  

And in case you didn’t know it:

“Icon.png” , 57x57
“Icon@2x.png” , 114x114
“Icon-72.png” , 72x72
“Icon-72@2x.png”, 144x144
“Icon-small-50.png” , 50x50
“Icon-small.png” , 29x29
“Icon-small@2x.png” 58x58

And for Android (just drop in folder with main.lua, no need to add to build.settings)
Icon-ldpi.png 36x36
Icon-mdpi.png 48x48
Icon-hdpi.png 64x64
Icon-xhdpi.png 96x96

[import]uid: 19626 topic_id: 27993 reply_id: 113264[/import]