gameNetwork for google does not work if included appodeal plugin

if appodeal plugin included into build.settings then gameNetwork plugin does not work. (Google Android)

when i remove appodeal then app can connect to google play services.

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 = "portrait", supported = { "portrait", } }, 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 = true, UIPrerenderedIcon = true, -- set to false for "shine" overlay UIApplicationExitsOnSuspend = false, MinimumOSVersion = "7.0", 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", }, NSAppTransportSecurity = { NSAllowsArbitraryLoads = true, }, FacebookAppID = "242453146101042", -- Replace XXXXXXXXXX with your Facebook App ID CFBundleURLTypes = { { CFBundleURLSchemes = { "fb242453146101042", "vk5382036"} } -- Replace XXXXXXXXXX with your Facebook App ID }, LSApplicationQueriesSchemes = { "fb", "fbapi", "fbauth2", "fb-messenger-api", "fbshareextension", "vk", "vk-share", "vkauthorize", }, } }, -- -- Android Section -- android = { googlePlayGamesAppId = "60600829762", usesPermissions = { "android.permission.INTERNET", "android.permission.ACCESS\_NETWORK\_STATE", "android.permission.ACCESS\_WIFI\_STATE", "android.permission.RECEIVE\_BOOT\_COMPLETED", "android.permission.READ\_PHONE\_STATE", "android.permission.WRITE\_EXTERNAL\_STORAGE", "android.permission.ACCESS\_COARSE\_LOCATION", "android.permission.ACCESS\_FINE\_LOCATION", "android.permission.WRITE\_EXTERNAL\_STORAGE", "com.google.android.c2dm.permission.RECEIVE", ".permission.C2D\_MESSAGE", "com.android.vending.BILLING", "com.android.vending.CHECK\_LICENSE", "com.google.android.providers.gsf.permissions.READ\_GSERVICES" }, usesFeatures = { { name = "android.hardware.location.gps", required = true }, }, applicationChildElements = { [[\<activity android:name="com.facebook.ads.InterstitialAdActivity" android:configChanges="keyboardHidden|orientation|screenSize"/\>]] }, intentFilters = { { actions = {'android.intent.action.VIEW'}, categories = { 'android.intent.category.DEFAULT', 'android.intent.category.BROWSABLE' }, data = {scheme = 'vk5382036'}, } }, facebookAppId = "242453146101042", -- replace XXXXXXXXX with your facebook appId }, permissions = { { name = ".permission.C2D\_MESSAGE" , protectionLevel = "signature" } , } , plugins = { ["plugin.zip"] = { publisherId = "com.coronalabs" }, ["plugin.toast"] = { publisherId = "com.spiralcodestudio" }, ["CoronaProvider.gameNetwork.google"] = { publisherId = "com.coronalabs", supportedPlatforms = { android=true }, }, ["plugin.google.iap.v3"] = { publisherId = "com.coronalabs", supportedPlatforms = { android=true } }, ["plugin.notifications"] = { publisherId = "com.coronalabs" }, ["plugin.OneSignal"] = { publisherId = "com.onesignal", }, ["plugin.google.play.services"] = { publisherId = "com.coronalabs", supportedPlatforms = { android=true } }, ["plugin.vibrator"] = { publisherId = "com.spiralcodestudio" }, ["plugin.twitter"] = { publisherId = "com.jasonschroeder", }, ['plugin.vk'] = { publisherId = 'com.spiralcodestudio' }, ["plugin.facebook.v4"] = { publisherId = "com.coronalabs", }, ["plugin.pasteboard"] = { publisherId = "com.coronalabs", }, ["plugin.appodeal"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone=true, android=true, appletvos=true } }, ["CoronaProvider.gameNetwork.apple"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone=true } }, }, }

Solved, we start to use new gpgs and now app works fine.
Don’t forget remove “plugin.google.play.services” from plugins and activate Google Drive in Google Developer Console, if you want to use gpgs too.

Solved, we start to use new gpgs and now app works fine.
Don’t forget remove “plugin.google.play.services” from plugins and activate Google Drive in Google Developer Console, if you want to use gpgs too.