Skip to main content

AdMob Crash

Android Studio: **All versions **| Appodeal SDK: All versions


If the app crashes on startup, check the logs from your device. Connect a device with the app installed, open the Android Studio Logcat console, run the app and check the logs. For more information about the console please visit Debugging with Android Studio.

The following crash happens if AdMob App Id has not been specified in AndroidManifest.xml file, which is required for AdMob integration. Appodeal SDK contains AdMob adapters by default.

The crash log example:

java.lang.RuntimeException: Unable to get provider com.google.android.gms.ads.MobileAdsInitProvider: java.lang.IllegalStateException:

**************************************************************************
* The Google Mobile Ads SDK was initialized incorrectly. AdMob publishers *
* should follow the instructions here: *
* https://googlemobileadssdk.page.link/AdMob-android-update-manifest *
* to add a valid App ID inside the AndroidManifest. *
* Google Ad Manager publishers should follow instructions here: *
* https://googlemobileadssdk.page.link/ad-manager-android-update-manifest. *
**************************************************************************


at android.app.ActivityThread.installProvider(ActivityThread.java:7194)
at android.app.ActivityThread.installContentProviders(ActivityThread.java:6672)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6567)
at android.app.ActivityThread.access$1400(ActivityThread.java:224)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1887)
at android.os.Handler.dispatchMessage(Handler.java:107)
at android.os.Looper.loop(Looper.java:223)
at android.app.ActivityThread.main(ActivityThread.java:7562)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:539)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:950)
Caused by: java.lang.IllegalStateException:

...

Solutions

Use AdMob Adapter In Your App

If you are planning to use AdMob in your app - add AdMob App ID to meta-data tag in AndroidManifest.xml:

<manifest>
<application>
<!-- Add your AdMob App ID -->
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="ca-app-pub-xxxxxxxxxxxxxxxx~yyyyyyyyyy"/>
</application>
</manifest>

AdMob App ID is the unique ID assigned to your app.

To find the AdMob App ID in your AdMob account, go to Apps → Your Application → App Settings and copy the AdMob App ID.

info

Before using AdMob make sure to complete the steps from our AdMob integration guide and AdMob sync guide.

Remove AdMob Adapter From Your App

If you are not planning to use AdMob in your app complete the following steps:

  1. Go to Configure Mediated Networks guide, uncheck AdMob network and generate a new build.gradle file.
  1. Additionally, you need to manually exclude Play Services Ads and use the build.gradle file with the following setup:
implementation("com.appodeal.ads:sdk:3.2.1.+") {
exclude(group = "com.appodeal.ads.sdk.networks", module = "admob")
exclude(group = "com.google.android.gms", module = "play-services-ads")
}