Icon error when building iphone / ipad (universal)

hello all…

I think i am missing something. My icon 72x72 is named Icon-72.png. But when i want to compile it for iphone and ipad, i get an error saying that i don’t have ipad 72x72 icon. Is there a way to fix this?

Thanks in advance [import]uid: 74723 topic_id: 13774 reply_id: 313774[/import]

try giving the following in build.settings file.
[lua]settings =
{
iphone =
{
plist =
{
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles =
{
“Icon.png” ,
“Icon@2x.png” ,
“Icon-72.png”
},

},
},

} [/lua] [import]uid: 71210 topic_id: 13774 reply_id: 50563[/import]

Works perfectly, Thanks!

If i want to add more icons like Icon-Small.png i just add it into CFBundleIconFIles? Is there any format i need to put it? Eg: Icon-72.png must be after Icon@2x.png etc… [import]uid: 74723 topic_id: 13774 reply_id: 50571[/import]

I think order doesn’t matter.
u may try this
[lua]settings =
{
iphone =
{
plist =
{
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“Icon.png” ,
“Icon@2x.png” ,
“Icon-72.png” ,
“Icon-Small-50.png” ,
“Icon-Small.png” ,
“Icon-Small@2x.png”
},
},
}
}[/lua] [import]uid: 71210 topic_id: 13774 reply_id: 50578[/import]

Thank you. [import]uid: 74723 topic_id: 13774 reply_id: 50581[/import]