Hi,
I’m working on an iPad only app. I’ve already added all of the icons and launch images and looks good but when I build it I get this message:
“warning: Icon specified in the Info.plist not found under the top level app wrapper: Icon.png (-19007)”
This is how my build.settings file looks:
settings = { orientation = { default = "landscapeRight", supported = { "landscapeLeft", "landscapeRight" } }, iphone = { plist = { UIStatusBarHidden = true, UIPrerenderedIcon = true, CFBundleIconFile = "Icon.png", CFBundleIconFiles = { "Icon-72.png", "Icon-72@2x.png", "Icon-Small-50.png", "Icon-Small-50@2x.png", "iTunesArtwork", "iTunesArtwork@2x" }, } }, }
And the icon files under the project directory are these:
-
Icon-72.png (72 X 72)
-
Icon-72@2x.png (144 X 144)
-
Icon-Small-50.png (50 X 50)
-
Icon-Small-50@2x.png (100 X 100)
I’ve noticed that if I change the CFBundleIconFile line to “Icon-72.png” instead of “Icon.png” the message error disappears but I’m not sure if this is correct because all of the samples I’ve seen uses “Icon.png”.
What is the correct way to solve the problem? Should I include the “Icon.png” (57x57) icon too?
Thanks for your help.
Best regards,
Paolo
