Hello,
I really need a help here. I am also using Pendrush's Ad manager Library with admob library. Ad manager Library is based on google mobile ads sdk 19.7 whereas firebase admob's is older I think. To use both libraries I am initializing both mobileadssdk:
and
After the update there is no problem with android 10 devices, but verisons below 10, especially 9 crash rates increased by 10x, I cant reproduce it with a genymotion emulaator with adnrıoid 9 or lower, crashyltyics not showing any spike in crashes, but google play console shows the huge increase in crashes( maybe meaning app even not starting so crashlytics cant record it) .
suspecting some things:
1) initializing 2 mobile ads sdk
2) Updated the ads, ads-lite and ads-base to 19.7.0 to be able to use ad manager sdk.
3) manifest I have added these for admanager:
Another interesting point is nearly%90 of these crashes are for huweai device. This doesnt make any sense to me
maybe one of these is vreaking stg. Do you have an idea? I am really having a huge problem with devices running below android 10 accoırding to admob income halfed, and google play console crashes increased by %1000 . Please check the image below. After the update at 15th feb
I really need a help here. I am also using Pendrush's Ad manager Library with admob library. Ad manager Library is based on google mobile ads sdk 19.7 whereas firebase admob's is older I think. To use both libraries I am initializing both mobileadssdk:
Dim MobileAds As MobileAds
MobileAds.Initialize
and
Dim MobileAdsdk1s As MobileAdsSdk
MobileAdsSdk.Initialize
After the update there is no problem with android 10 devices, but verisons below 10, especially 9 crash rates increased by 10x, I cant reproduce it with a genymotion emulaator with adnrıoid 9 or lower, crashyltyics not showing any spike in crashes, but google play console shows the huge increase in crashes( maybe meaning app even not starting so crashlytics cant record it) .
suspecting some things:
1) initializing 2 mobile ads sdk
2) Updated the ads, ads-lite and ads-base to 19.7.0 to be able to use ad manager sdk.
3) manifest I have added these for admanager:
Another interesting point is nearly%90 of these crashes are for huweai device. This doesnt make any sense to me
B4X:
AddApplicationText(<meta-data
android:name="com.google.android.gms.ads.AD_MANAGER_APP"
android:value="true"/>
<activity
android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
<activity android:name="com.google.android.gms.common.api.GoogleApiActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:exported="false"/>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<receiver
android:name="com.google.android.gms.measurement.AppMeasurementReceiver"
android:enabled="true"
android:exported="false" >
</receiver>
<service
android:name="com.google.android.gms.measurement.AppMeasurementService"
android:enabled="true"
android:exported="false" />
<receiver
android:name="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver"
android:enabled="true"
android:exported="true"
android:permission="android.permission.INSTALL_PACKAGES" >
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
<service
android:name="com.google.android.gms.measurement.AppMeasurementJobService"
android:enabled="true"
android:exported="false"
android:permission="android.permission.BIND_JOB_SERVICE" />)
maybe one of these is vreaking stg. Do you have an idea? I am really having a huge problem with devices running below android 10 accoırding to admob income halfed, and google play console crashes increased by %1000 . Please check the image below. After the update at 15th feb
Last edited: