I set up the recommended build code for the appodeal plugin and the appodeal init() command. Prior to these changes I was receiving ads with no problems. Now since the changes I do not receive ads at all.
Here is the init call, where appKey is either the Android or IOS key depending on the device.
appodeal.init( adListener, { appKey=appKey, hasUserConsent = global.userConsent} )
here is the plugin section of the gradle file:
["plugin.appodeal.beta.base"] = { publisherId = 'com.coronalabs' }, -- Base ['plugin.appodeal.beta.base'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.AmazonAds'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.GoogleAdMob'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.TwitterMoPub'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.StartApp'] = { publisherId = 'com.coronalabs' }, -- interstitial ['plugin.appodeal.beta.AdColony'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.AppLovin'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.Chartboost'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.FacebookAudience'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.Flurry'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.InMobi'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.IronSource'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.Mobvista'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.MyTarget'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.StartApp'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.MillenialMedia'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.Ogury'] = { publisherId = 'com.coronalabs' }, },
and the permissions section:
usesPermissions = { "android.permission.INTERNET", "android.permission.ACCESS\_NETWORK\_STATE", "android.permission.ACCESS\_WIFI\_STATE", "android.permission.ACCESS\_COARSE\_LOCATION", "android.permission.ACCESS\_FINE\_LOCATION", "android.permission.WRITE\_EXTERNAL\_STORAGE", "android.permission.VIBRATE", "com.android.vending.CHECK\_LICENSE", "com.android.vending.BILLING" },
other than adding code to gather the user response for the global.userConsent parameter, which is working successfully, and changing the init call to the format listed above there have been no changes that should have caused the adds to stop showing.
Could this be an issue with the appKey value? Should I create a new one?