Ok. Let get to the bottom of this. I am on day 2 of using Appodeal 2.6.0 on one of my apps. I looked at how many active Android 10 devices I had in the last 2 days and it is very low. I guess Android 10 is not that readily available in LTAM. Most of my users are Android 9. No crashes so far. The usual ANRs
I am using 2020.3569. I upload a .aab not an apk. I use my own refresh timer. I don’t rely on Appodeal’s timer for banners. I use my own keys for Admob, Facebook and Applovin. They all display banner ads.
Here is my entire build settings:
-- -- For more information on build.settings, see the Project Build Settings guide at: -- https://docs.coronalabs.com/guide/distribution/buildSettings -- settings = { splashScreen = { enable = false }, orientation = { -- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight default = "portrait", supported = { "portrait", }, }, -- -- Android section -- android = { usesPermissions = { "android.permission.INTERNET", "com.android.vending.BILLING", "com.android.vending.CHECK\_LICENSE", "android.permission.ACCESS\_NETWORK\_STATE", "android.permission.ACCESS\_WIFI\_STATE", "android.permission.ACCESS\_COARSE\_LOCATION" }, usesFeatures = { { name = "android.hardware.location.gps", required = false }, }, minSdkVersion = "15", manifestChildElements = { -- Array of strings [[\<uses-sdk tools:overrideLibrary="com.flurry.android.analytics.sdk, plugin.tapjoyInstall, com.tappx.sdk.android" /\>]] }, applicationChildElements = { [[\<meta-data android:name="com.google.android.gms.ads.APPLICATION\_ID" android:value="ca-app-pub-xxxxx"/\>]], [[\<meta-data android:name="com.tapjoy.appstore" android:value="Google"/\>]] }, useGoogleServicesJson = true, facebookAppId = "xxxxx" }, -- -- iOS section -- iphone = { xcassets = "Images.xcassets", plist = { UIStatusBarHidden = false, UILaunchStoryboardName = "LaunchScreen", FacebookAppID = "xxxx", -- Replace XXXXXXXXXX with your Facebook App ID GADApplicationIdentifier = "ca-app-pub-xxx", CFBundleURLTypes = { { CFBundleURLSchemes = { "xxxxx", } } -- Replace XXXXXXXXXX with your Facebook App ID }, -- Whitelist Facebook apps LSApplicationQueriesSchemes = { "fb", -- Needed for the facebook-v4a.isFacebookAppEnabled() API "fbapi", "fbauth2", "fb-messenger-api", "fbshareextension" } }, }, -- -- Plugins section -- plugins = { ["plugin.utf8"] = { publisherId = "com.coronalabs" }, ["plugin.GBCLanguageCabinet"] = { publisherId = "com.gamesbycandlelight" }, ["plugin.iap\_badger"] = { -- required publisherId = "uk.co.happymongoose", }, ["plugin.gamesparks"] = { publisherId = "com.gamesparks", }, ["plugin.openssl"] = { publisherId = "com.coronalabs", }, ["plugin.bit"] = { publisherId = "com.coronalabs" }, ["plugin.advertisingId"] = { publisherId = "com.coronalabs" }, ["plugin.google.iap.v3"] = { publisherId = "com.coronalabs", supportedPlatforms = { android=true } }, ["plugin.amazon.iap"] = { publisherId = "com.coronalabs", supportedPlatforms = { ["android-kindle"]=true } }, ["CoronaProvider.gameNetwork.apple"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone=true } }, ["plugin.idVerifySig"] = { publisherId = "com.cabagomez", supportedPlatforms = { iphone=true } }, ["plugin.reviewPopUp"] = { publisherId = "tech.scotth", supportedPlatforms = { iphone=true } }, ["plugin.tapjoyInstall"] = { publisherId = "com.cabagomez" }, ["plugin.tappx"] = { publisherId = "com.cabagomez", supportedPlatforms = { ["android"] = true } }, ["plugin.hostedplugin"] = { publisherId = "com.cabagomez", supportedPlatforms = { iphone = false, android = { url="https:xxxxxxx@//xxxxxx/amazonads.tgz" }, macos = false, win32 = false }, }, -- Appodeal ['plugin.appodeal.beta.base'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.AdColony'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.AppLovin'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.Appnext'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.Chartboost'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.FacebookAudience'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.GoogleAdMob'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.InMobi'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.IronSource'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.Ogury'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.Unity'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.Vungle'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.Yandex'] = { publisherId = 'com.coronalabs' }, ["plugin.tenjin"] = { publisherId = "com.coronalabs" }, }, -- -- Project section -- excludeFiles = { -- Exclude unnecessary files for each platform all = { "Icon.png", "Icon-\*dpi.png", "Images.xcassets", }, android = { "LaunchScreen.storyboardc", }, }, }