top of page

[Flutter/dart]initialization error of Admob


Phenomenon

When Admob is added in the app and the app is started, the following error occurs.


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



Cause

AndroidManifest was written incorrectly.

<meta-data> must be in the same hierarchy as activity.


correct

<activity
    android:name=".MainActivity">
    ...
<meta-data
    android:name="com.google.android.gms.ads.APPLICATION_ID"
    android:value="ca-app-pub-***~***"/>

incorrect

    <activity
        android:name=".MainActivity">
    ...
<meta-data
    android:name="com.google.android.gms.ads.APPLICATION_ID"
    android:value="ca-app-pub-***~***"/>

Recent Posts

See All

Comments


category

Let's do our best with our partner:​ ChatReminder

iphone6.5p2.png

It is an application that achieves goals in a chat format with partners.

google-play-badge.png
Download_on_the_App_Store_Badge_JP_RGB_blk_100317.png

Let's do our best with our partner:​ ChatReminder

納品:iPhone6.5①.png

It is an application that achieves goals in a chat format with partners.

google-play-badge.png
Download_on_the_App_Store_Badge_JP_RGB_blk_100317.png

Theme diary: Decide the theme and record for each genre

It is a diary application that allows you to post and record with themes and sub-themes for each genre.

google-play-badge.png
Download_on_the_App_Store_Badge_JP_RGB_blk_100317.png
bottom of page