[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 AllWhat want to do I want to create an input form using TextField. For example, if the input content is a monetary amount, I would like to...
What want to do There is a variable that remain unchanged once the initial value is determined. However, it cannot be determined yet when...
What want to do As the title suggests. Place two widgets in one line on the screen One in the center of the screen and the other on the...
Comments