Getting weird error when I run the app:

Whenever I run the app on my phone, I get this weird error message. Anyone know whats happening?

(Image attached)

Please post your build.settings and let us know what version of Corona SDK you’re running.

Rob

I am running v2016.2992.

Here is my build.settings:

-- -- 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 = "landscapeRight", supported = { "landscapeRight", } }, 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 = false, 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 = { "fbXXXXXXXXX", -- replace XXXXXXXXX with your Facebook appId } } } --]] } }, -- -- Android Section -- android = { googlePlayGamesAppId = "202073373404", usesPermissions = { "android.permission.INTERNET", "android.permission.ACCESS\_NETWORK\_STATE" }, }, plugins = { ["plugin.gpgs"] = { publisherId = "com.coronalabs", supportedPlatforms = {android = true} }, ["plugin.google.play.services"] = { publisherId = "com.coronalabs", supportedPLatforms = {android = true} } } }

First you cannot use plugin.google.play.services and plugin.gpgs together with the build you are currently using. You need to update to daily build 3005 or later so those two can work together. However, that said, we announced on Monday (and updated on Thursday) on the blog the availability of a new AdMob plugin and we are going to retire the plugin.google.play.services plugin at some point in the near future. You either need to migrate to the new plugin or an alternate ad service. Please go to the blog and read the posts for this week.

Rob

Please post your build.settings and let us know what version of Corona SDK you’re running.

Rob

I am running v2016.2992.

Here is my build.settings:

-- -- 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 = "landscapeRight", supported = { "landscapeRight", } }, 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 = false, 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 = { "fbXXXXXXXXX", -- replace XXXXXXXXX with your Facebook appId } } } --]] } }, -- -- Android Section -- android = { googlePlayGamesAppId = "202073373404", usesPermissions = { "android.permission.INTERNET", "android.permission.ACCESS\_NETWORK\_STATE" }, }, plugins = { ["plugin.gpgs"] = { publisherId = "com.coronalabs", supportedPlatforms = {android = true} }, ["plugin.google.play.services"] = { publisherId = "com.coronalabs", supportedPLatforms = {android = true} } } }

First you cannot use plugin.google.play.services and plugin.gpgs together with the build you are currently using. You need to update to daily build 3005 or later so those two can work together. However, that said, we announced on Monday (and updated on Thursday) on the blog the availability of a new AdMob plugin and we are going to retire the plugin.google.play.services plugin at some point in the near future. You either need to migrate to the new plugin or an alternate ad service. Please go to the blog and read the posts for this week.

Rob