After upgrading Corona SDK from public release to 3005 we have a error when calling gameNetwork functions:
12-14 19:07:24.731: E/AndroidRuntime(2853): java.lang.IllegalStateException: The meta-data tag in your app's AndroidManifest.xml does not have the right value. Expected 4242000 but found 9683000. You must have the following declaration within the \<application\> element: \<meta-data android:name="com.google.android.gms.version" android:value="@integer/google\_play\_services\_version" /\>12-14 19:07:24.731: E/AndroidRuntime(2853): at com.google.android.gms.common.GooglePlayServicesUtil.n(Unknown Source) 12-14 19:07:24.731: E/AndroidRuntime(2853): at com.google.android.gms.common.GooglePlayServicesUtil.isGooglePlayServicesAvailable(Unknown Source) 12-14 19:07:24.731: E/AndroidRuntime(2853): at CoronaProvider.gameNetwork.google.GameHelper.beginUserInitiatedSignIn(GameHelper.java:348) 12-14 19:07:24.731: E/AndroidRuntime(2853): at CoronaProvider.gameNetwork.google.LuaLoader$3.run(LuaLoader.java:192) 12-14 19:07:24.731: E/AndroidRuntime(2853): at android.os.Handler.handleCallback(Handler.java:739) 12-14 19:07:24.731: E/AndroidRuntime(2853): at android.os.Handler.dispatchMessage(Handler.java:95) 12-14 19:07:24.731: E/AndroidRuntime(2853): at android.os.Looper.loop(Looper.java:148) 12-14 19:07:24.731: E/AndroidRuntime(2853): at android.app.ActivityThread.main(ActivityThread.java:7325) 12-14 19:07:24.731: E/AndroidRuntime(2853): at java.lang.reflect.Method.invoke(Native Method) 12-14 19:07:24.731: E/AndroidRuntime(2853): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230) 12-14 19:07:24.731: E/AndroidRuntime(2853): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)
build settings plugins section:
plugins = { ["CoronaProvider.analytics.flurry"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone = true, android = true, ["iphone-sim"] = true } }, ["plugin.google.play.services"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone = true, android = true, ["iphone-sim"] = true } }, -- Используется для GameCenter ["CoronaProvider.gameNetwork.apple"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone = true, ["iphone-sim"] = true } }, ["CoronaProvider.gameNetwork.google"] = { publisherId = "com.coronalabs", supportedPlatforms = { android = true } }, ["plugin.notifications"] = { publisherId = "com.coronalabs" }, ["plugin.google.iap.v3"] = { publisherId = "com.coronalabs", supportedPlatforms = { android = true } }, ['plugin.vk'] = { publisherId = 'com.spiralcodestudio' }
