Thanks for your reply. Unfortunately, removing google play services plugin didn’t help. I use the latest corona sdk.
Here is my build.settings
settings =
{
window =
{
suspendWhenMinimized = true,
},
splashScreen =
{
enable = false
},
plugins =
{
--[“CoronaProvider.gameNetwork.apple”] =
– {
– publisherId = “com.coronalabs”,
– supportedPlatforms = { iphone=true },
– },
[“plugin.appodeal”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone=true, android=true }
},
[“plugin.google.play.services”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { android=true }
},
[“plugin.google.iap.v3”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { android=true }
},
},
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 =
{
MinimumOSVersion = “8.0”,
UIStatusBarHidden = false,
UIPrerenderedIcon = true, – set to false for “shine” overlay
–UIApplicationExitsOnSuspend = true, – uncomment to quit app on suspend
NSAppTransportSecurity = { NSAllowsArbitraryLoads=true },
CFBundleIconFiles =
{
“Icon-40.png”,
“Icon-40@2x.png”,
“Icon-60@2x.png”,
“Icon-72.png”,
“Icon-72@2x.png”,
“Icon-76.png”,
“Icon-76@2x.png”,
“Icon-Small-50.png”,
“Icon-Small-50@2x.png”,
“Icon-Small.png”,
“Icon-Small@2x.png”,
“Icon.png”,
“Icon@2x.png”,
“Icon-Small@3x.png”,
“Icon-40@3x.png”,
“Icon-60@3x.png”,
“Icon-40@2x.png”,
“Icon-Small.png”,
“Icon-Small@2x.png”,
“Icon-83.5@2x.png”,
“NotificationIcon@2x.png”,
“NotificationIcon@3x.png”,
“NotificationIcon~ipad.png”,
“NotificationIcon~ipad@2x.png”
},
–[[
– iOS app URL schemes:
CFBundleURLTypes =
{
{
CFBundleURLSchemes =
{
“fbXXXXXXXXX”, – replace XXXXXXXXX with your Facebook appId
}
}
}
–]]
}
},
–
– Android Section
–
android =
{
usesPermissions =
{
“android.permission.INTERNET”,
“com.android.vending.BILLING”,
“android.permission.ACCESS_NETWORK_STATE”,
“android.permission.ACCESS_COARSE_LOCATION”,
“android.permission.WRITE_EXTERNAL_STORAGE”
},
},
}