I hope to create a single app that supports both the iPhone and the iPad. The app works in the simulator for both devices as desired. Now I’m trying to build and deploy it. I set the “Icon File” in the plist to the 57x57 .png image and when I build and try to submit the app ItunesConnect complains about needing a 72x72 .png image for the iPad. If I specify the “Icon File” to the 72x72 .png ItunesConnect complains about needing a 57x57 image for the iPhone. Any ideas? [import]uid: 86879 topic_id: 16125 reply_id: 316125[/import]
AH, universal binary…
you need to set the icons names (in the pList) in build.settings
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“Icon.png” ,
“Icon@2x.png” ,
“Icon-72.png” ,
},
cheers,
?
[import]uid: 3826 topic_id: 16125 reply_id: 59981[/import]
Hay!! Thanks for your quick response, do you know what I did wrong here, because it didn’t work?
–Thanks so Much–
settings =
{
orientation =
{
default = “portrait”,
supported = { “portrait” },
},
iphone =
{
plist =
{
UIStatusBarHidden=true,
UIApplicationExitsOnSuspend = true,
UIPrerenderedIcon = true
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“Icon.png” ,
“Icon@2x.png” ,
“Icon-72.png” ,
},
},
}
}
[import]uid: 86879 topic_id: 16125 reply_id: 60029[/import]
I think you are missing a , at the end of UIPrerenderedIcon
cheers,
?
[import]uid: 3826 topic_id: 16125 reply_id: 60031[/import]
That didn’t work = (
still got this
warning: iPad: Icon.png: icon dimensions (57 x 57) don’t meet the size requirements. The icon file must be 72x72 pixels, in .png format (-19014) [import]uid: 86879 topic_id: 16125 reply_id: 60032[/import]
Do you have the three sized icons? just setting the pList is not enough, you also need to create the three icons and name them accordingly as
Icon.png ( 57x 57)
Icon-72.png ( 72x 72)
Icon@2x.png (114x114)
cheers,
?
[import]uid: 3826 topic_id: 16125 reply_id: 60034[/import]
Hay!
yes is do, and what’s weird is I just loaded it onto the iPad and and iPod and they both had the correct logo in my home screen [import]uid: 86879 topic_id: 16125 reply_id: 60039[/import]