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!

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

1
2
3
4
5
6
7
8
9
            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"
           },

It's OK! Thanks!

views:1583 update:2011/10/8 15:12:54
corona forums © 2003-2011