I get the following error when starting the app built for the Google play:(the version of corona SDK is 2017.3068, the version of onesignal SDK is V1.13.3)
“[App Name] relies on Google Play services, which cannot be maintained without the Google Play store. Contact the manufacturer for assistance.”
The following is my build.settings
settings = {
plugins =
{
[“plugin.openssl”] =
{
publisherId = “com.coronalabs”,
},
[“plugin.OneSignal”] =
{
publisherId = “com.onesignal”,
},
},
android =
{
usesPermissions =
{
“android.permission.INTERNET”,
“android.permission.CAMERA”,
“android.permission.WRITE_EXTERNAL_STORAGE”,
“android.permission.RECORD_AUDIO”,
“android.permission.RECEIVE_BOOT_COMPLETED”,
}
},
orientation =
{
default = “portrait”,
},
iphone =
{
plist=
{
UIBackgroundModes = {“remote-notification”},
UIApplicationExitsOnSuspend = false,
CFBundleIconFiles = {
“Icon-40.png”,
“Icon-58.png”,
“Icon-76.png”,
“Icon-80.png”,
“Icon-87.png”,
“Icon-120.png”,
“Icon-152.png”,
“Icon-167.png”,
“Icon-180.png”,
},
},
},
}
Should I add any other google play files manually into the project?