bob8
1
Hi
When I build for iphone and ipad, I get the error re the ipad icon being the wrong size…it isn’t!
Here is my plist and all these icons are in the app folder along with the itunes artwork file
settings = {
settings =
{
orientation =
{
default = “portrait”,
supported =
{
“portrait”, “portraitUpsideDown”,
},
},
iphone =
{
plist =
{
UIStatusBarHidden = true,
UIApplicationExitsOnSuspend = true,
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“Icon.png” ,
“Icon@2x.png” ,
“Icon-72.png” ,
“Icon-Small-50.png” ,
“Icon-Small.png” ,
“Icon-Small@2x.png”
},
},
},
}
}
Any help appreciated. Thanks [import]uid: 45029 topic_id: 11295 reply_id: 311295[/import]
snarla
2
Try getting rid of the extra settings = { }, you only need one [import]uid: 6787 topic_id: 11295 reply_id: 41061[/import]
bob8
3
Hi snarla
Thanks, I will try this and get back with the result! [import]uid: 45029 topic_id: 11295 reply_id: 41141[/import]
bob8
4
Hi snarla
Still getting this error
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)
As suggested, I removed the additional = { and now have this in the build settings
settings = {
orientation = {
default = “portrait”,
supported =
“portrait”, “portraitUpsideDown”,
},
iphone = {
plist =
UIStatusBarHidden = true,
UIApplicationExitsOnSuspend = true,
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“Icon.png” ,
“Icon@2x.png” ,
“Icon-72.png” ,
“Icon-Small-50.png” ,
“Icon-Small.png” ,
“Icon-Small@2x.png”
}, [import]uid: 45029 topic_id: 11295 reply_id: 41143[/import]
WauloK
5
There’s a couple of missing end brackets in that one. [import]uid: 10389 topic_id: 11295 reply_id: 41407[/import]
bob8
6
Hi Waulok
Thanks, could you be specific and tell me which ones?
Bob [import]uid: 45029 topic_id: 11295 reply_id: 41423[/import]
bob8,
man… you were asked to remove the extra, not every starting curly bracket, If you start a curly bracket, it must have an ending one.
just use this
[lua]settings =
{
orientation =
{
default = “portrait”,
supported =
{
“portrait”, “portraitUpsideDown”,
},
},
iphone =
{
plist =
{
UIStatusBarHidden = true,
UIApplicationExitsOnSuspend = true,
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles =
{
“Icon.png” ,
“Icon@2x.png” ,
“Icon-72.png” ,
“Icon-Small-50.png” ,
“Icon-Small.png” ,
“Icon-Small@2x.png”
},
},
},
}[/lua]
hope that solves your issue
cheers,
?
[import]uid: 3826 topic_id: 11295 reply_id: 41426[/import]
bob8
8
Hi jayantv
Thanks for your help, much appreciated. Apologies if very basic!
You can train a monkey to paint a room BUT it can never choose the colours!
Thanks again
Bob [import]uid: 45029 topic_id: 11295 reply_id: 41429[/import]
@bob, no worries, however you must watch rise of the Planet of the Apes…
[import]uid: 3826 topic_id: 11295 reply_id: 41432[/import]