A device build error occurred on the server with CoronaProvider.gameNetwork.google

Hi,

I’m trying to build for iOS for the first time and I am having an error. (I am able to build on my windows 8 machine without problem on the same network)

I’m using corona build 2014.2511 on Yosemite

A device build error occurred on the server.  BuildID: 5533d90485bb0  Error: Get plugin failed.  Publisher: com.coronalabs  Plugin: CoronaProvider.gameNetwork.google If you are not connecting to the internet directly (for example, you connect via a proxy server) you might want to try a direct connection to see if that solves the problem.

Can you let me know what to do to resolved this?

Change this code:

        -- Google play game services         ["CoronaProvider.gameNetwork.google"] =         {             publisherId = "com.coronalabs",         },

to

        -- Google play game services         ["CoronaProvider.gameNetwork.google"] =         {             publisherId = "com.coronalabs",             supportedPlatforms = { android=true },         },

in your build.settings file.

Rob

that fixed it!

thanks Rob! :slight_smile:

Change this code:

        -- Google play game services         ["CoronaProvider.gameNetwork.google"] =         {             publisherId = "com.coronalabs",         },

to

        -- Google play game services         ["CoronaProvider.gameNetwork.google"] =         {             publisherId = "com.coronalabs",             supportedPlatforms = { android=true },         },

in your build.settings file.

Rob

that fixed it!

thanks Rob! :slight_smile: