Sure!
Here is our build settings:
[lua]
settings =
{
orientation =
{
default = “portrait”,
supported = { “portrait”, }
},
excludeFiles =
{
iphone = { “Icon-*dpi.png”, },
android = { “Icon.png”, “Icon-Small-*.png”, “Icon*@2x.png”, },
},
– iOS Section
iphone =
{
plist =
{
UIStatusBarHidden = false,
UIPrerenderedIcon = true,
CFBundleIconFiles =
{
“Icon.png”,
“Icon@2x.png”,
“Icon-167.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”,
},
}
},
android =
{
googlePlayGamesAppId ="**********133",
},
plugins =
{
[“plugin.gpgs”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { android=true }
},
[“CoronaProvider.gameNetwork.apple”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone=true, [“iphone-sim”]=true },
},
[“plugin.adbuddiz”] =
{
publisherId = “com.adbuddiz”
},
[“CoronaProvider.ads.vungle”] =
{
publisherId = “com.vungle”
},
[“plugin.google.iap.v3”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { android=true }
},
},
– Android permissions
androidPermissions = {
“android.permission.READ_PHONE_STATE”,
“android.permission.INTERNET”,
“android.permission.WRITE_EXTERNAL_STORAGE”,
“android.permission.ACCESS_WIFI_STATE”,
“android.permission.ACCESS_NETWORK_STATE”,
“com.android.vending.BILLING”,
“com.android.vending.CHECK_LICENSE”,
},
}
[/lua]