I’m confused about this error…
build.settings:28: ‘}’ expected (to close ‘{’ at line 9) near ‘skipPNGCrush’
I have tried it with and without the comma after “skipPNGCrush = false”
settings = {
orientation =
{
default = “portrait”,
},
iphone =
{ ------THIS IS LINE 9
plist =
{
UIApplicationExitsOnSuspend = true,
UIPrerenderedIcon = true,
UIStatusBarHidden = true,
CFBundleIconFiles = {
“Icon.png”,
“Icon@2x.png”,
“Icon-60.png”,
“Icon-60@2x.png”,
},
UIInterfaceOrientation = “UIInterfaceOrientationPortrait”,
}
skipPNGCrush = false -------THIS IS LINE 28
}, ------- THIS CLOSES THE } IN LINE 9
android =
{
versionCode = “10”,
usesPermissions =
{
“android.permission.CALL_PHONE”
},
}
}