App icon names for a universal app

Hi there,

I want to publish my first app on but I’m not sure what to name the icon files because it is a universal app. If I only use a 57x57 or 72x72 icon the app fails Corona’s validation test. I have tried calling the iPad icon “Icon-72” but Corona still says an iPad icon is needed. What should I name the icon files if I would like to submit my app to the Apps Store?

Thanks for the help. [import]uid: 10829 topic_id: 12513 reply_id: 312513[/import]

Iphone Icon : Icon.png
Iphone 4G : Icon@2x.png
Ipad Icon : Icon-72.png
and give the below setting in your build.setting file

[lua] iphone =
{
plist =
{
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles =
{
“Icon.png” ,
“Icon@2x.png” ,
“Icon-72.png”
},

},
},[/lua] [import]uid: 71210 topic_id: 12513 reply_id: 45717[/import]

You find some use out this post as well…

My Corona SDK Quick Reference Items

[import]uid: 48203 topic_id: 12513 reply_id: 45728[/import]

Thank you very much for the replies, they were very helpful! [import]uid: 10829 topic_id: 12513 reply_id: 45810[/import]