Universal Build - Icon Issue

Hi,
I guess there is an issue with the Universal build, it is more of an issue with the Chicken and the Egg, The Apple compliance check complains about the Icon is not in 72x72 format called Icon.png, then when the Icon.png is made into a 72x72 Icon.png, the same check now complains that the Icon.png is not in 57x57 format called Icon.png

Will it make up it’s mind?

cheers,

?:slight_smile: [import]uid: 3826 topic_id: 10221 reply_id: 310221[/import]

They should be named like this:

iPad: Icon-72.png
iPhone 4: Icon@2x.png
Regular: Icon.png

You have the sizes correct, just the names are wrong. I’m also having the same message as you though (even after I name the files correctly). [import]uid: 51654 topic_id: 10221 reply_id: 37300[/import]

One more step…

You have to tell the compiler what your names are like so…

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

in your build.settings file in the plist table.

[import]uid: 26049 topic_id: 10221 reply_id: 37319[/import]