I am getting this error too. I am trying to build android game(use google play services and admob)
when I use google play services plugin and admob plugin in the same time. I always got error build #5.
If I comment one of the plugins… it’s work fine.
I have tried build this with coronaSDK-2014.2189
Here is my build.settings:
[lua]-- Supported values for orientation:
– portrait, portraitUpsideDown, landscapeLeft, landscapeRight
settings = {
orientation = {
default = “portrait”,
supported = { “portrait”, }
},
android =
{
googlePlayGamesAppId = “hidden” --long App ID number (use yours!)
},
plugins = {
– key is the name passed to Lua’s ‘require()’
[“CoronaProvider.ads.admob”] =
{
– required
publisherId = “com.coronalabs”,
},
– key is the name passed to Lua’s ‘require()’
[“CoronaProvider.gameNetwork.google”] =
{
– required
publisherId = “com.coronalabs”,
supportedPlatforms = { android = true }
},
},
– Android permissions
androidPermissions = {
“android.permission.INTERNET”,
“android.permission.ACCESS_NETWORK_STATE”,
“android.permission.READ_PHONE_STATE”,
},
}
[/lua]
Please help… 