Icons and Build.settings

Hi everyone, i got ready my Android project to upload to the market, but i dont know if is ok, because in the device dont show me the icon of the app, only show the Corona Icon, also I want to know wich build.settings and config.lua are recommended to android.

Thanks [import]uid: 81363 topic_id: 15368 reply_id: 315368[/import]

Hi,

You should have icons in your source directory named :
Icon-hdpi.png
Icon-ldpi.png
Icon-mdpi.png

sizes are (in order) 72, 36 and 48 pixel squares

They should appear on your device when test building and installing …

For the build.settings it depends on your app (is portrait, landscape, does it use network or something else …)

Here’s ours for android, for the example :

settings =  
{  
 orientation =   
 {  
 default = "landscapeRight",  
 supported = {"landscapeLeft","landscapeRight"},  
 },  
 android =  
 {  
 versionCode = "77",  
 installLocation="preferExternal"  
 },  
 androidPermissions =  
 {  
 "android.permission.ACCESS\_NETWORK\_STATE",  
 "android.permission.INTERNET"   
 }  
}  

config.lua is just standard …

Hope this Helps,

Phil [import]uid: 51301 topic_id: 15368 reply_id: 56827[/import]