build settings file:
–
– For more information on build.settings see the Corona SDK Build Guide at:
– http://docs.coronalabs.com/guide/distribution/buildSettings/index.html
–
settings =
{
orientation =
{
– Supported values for orientation:
– portrait, portraitUpsideDown, landscapeLeft, landscapeRight
default = “portrait”,
supported = { “portrait”, }
},
excludeFiles =
{
– Include only the necessary icon files on each platform
iphone = { “Icon-*dpi.png”, },
android = { “Icon.png”, “Icon-Small-*.png”, “Icon*@2x.png”, },
},
–
– iOS Section
–
iphone =
{
plist =
{
UIStatusBarHidden = true,
UIPrerenderedIcon = true, – set to false for “shine” overlay
–UIApplicationExitsOnSuspend = true, – uncomment to quit app on suspend
CFBundleIconFiles =
{
“Icon.png”,
“Icon@2x.png”,
“Icon-60.png”,
“Icon-60@2x.png”,
“Icon-60@3x.png”,
“Icon-72.png”,
“Icon-72@2x.png”,
“Icon-76.png”,
“Icon-76@2x.png”,
“Icon-Small.png”,
“Icon-Small@2x.png”,
“Icon-Small@3x.png”,
“Icon-Small-40.png”,
“Icon-Small-40@2x.png”,
“Icon-Small-50.png”,
“Icon-Small-50@2x.png”,
},
–[[
– iOS app URL schemes:
CFBundleURLTypes =
{
{
CFBundleURLSchemes =
{
“fb862052867225723”, – replace XXXXXXXXX with your Facebook appId
}
}
}
–]]
}
},
–
– Android Section
–
android =
{
googlePlayGamesAppId = “994096497629”,
usesPermissions = {
“android.permission.INTERNET”,
“android.permission.ACCESS_WIFI_STATE”,
“com.android.vending.BILLING”,
“com.android.vending.CHECK_LICENSE”,
},
},
plugins =
{
[“plugin.google.play.services”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { android = true }
},
[“CoronaProvider.gameNetwork.google”] =
{
publisherId = “com.coronalabs”
},
[“plugin.toast”] =
{
publisherId = “com.spiralcodestudio”
},
[“facebook”] =
{
publisherId = “com.coronalabs”
},
[“plugin.google.play.services”] =
{
publisherId = “com.coronalabs”
},
[“plugin.google.iap.v3”] =
{
– required
publisherId = “com.coronalabs”,
supportedPlatforms = { android = true },
},
},
}
corona build: 2015.2646