Here are the specifics of the crash. Last update we did was 12 th of december.
The curve is growing with the percentage of Android 10 installs. For some strange reason it’s been decreasing for the last couple of days. Including sunday where DAU is highest.
This leads me to think that some specific ads are causing it.
@ojnab have you tried moving your ad unit priority up and down to see if you can determine what provider is the issue.
@aarbron All I can offer is what I have in my code. It might not make much sense because it is part of a larger library.
adProvider.isAvailable = function(adType) if adType == "offerWall" then -- Appodeal doesn't have offerwall return false end if adType == "rewardedVideo" then local isLoaded = appodeal.canShow( "rewardedVideo" ) return isLoaded else -- Everything else. local isLoaded = appodeal.isLoaded( adType ) return isLoaded end return false end
I wonder if Vlad is still working on it and if we are going to get it in stable version.
Also I did some tests today (sorry but it’s not my main job and it’s hard for me to spend much time) and the app crashes on iOS if the app name has more that 2 words and there is space between them.
For example:
Application name: Four Strings or 4 Strings -> crashes
Application name: FourStrings or 4Strings -> works fine