How to set icon to show on tablet?

The iphone of build.settings is
iphone =
{
plist =
{
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“Icon.png”,
“Icon@2x.png”,
“Icon-72.png”,
},
},
}

But how to set the android of build.settings ? Why the default icon can’t be show in android screen? Please help! [import]uid: 51300 topic_id: 10327 reply_id: 310327[/import]

Its because some of the names cross over. You should use this:

  
 CFBundleIconFile = "iPhone-Icon.png",  
 CFBundleIconFiles = {  
 "iPhone-Icon.png" ,   
 "iPhone-Icon@2x.png" ,   
 "iPhone-Icon-72.png" ,   
 "iPhone-Icon-Small-50.png" ,   
 "iPhone-Icon-Small.png" ,   
 "iPhone-Icon-Small@2x.png"  
 },  

If you look at the doc at the bottom of ‘itunes connect’ it will tell you what sizes you need.

For android you need these files:

72x72 Icon-hdpi.png
36x36 Icon-ldpi.png
48x48 Icon-mdpi.png
72x72 Icon.png

Note Icon.png crosses over with iOS’s Icon.png. So if you want to keep one code base and just compile for whatever version do it as above. [import]uid: 8872 topic_id: 10327 reply_id: 37685[/import]

It’s OK! Thanks! [import]uid: 51300 topic_id: 10327 reply_id: 37740[/import]