问题描述
之前,我的应用正常运行。今天我重新构建,它显示错误 java.lang.RuntimeException:无法获取提供程序com.google.android.gms.ads.MobileAdsInitProvider:java.lang.IllegalStateException:
我搜索并找到解决方案是在 AndroidManifest.xml
中添加我的admob ID,然后添加并重建,但显示相同的错误。
Before, my app work fine. Today I rebuild and it show error java.lang.RuntimeException: Unable to get provider com.google.android.gms.ads.MobileAdsInitProvider: java.lang.IllegalStateException:
I search and find solution is add my admob id in AndroidManifest.xml
and I add it and rebuild, but it show same error.
我该如何解决?
推荐答案
将此行添加到项目AndroidManifest.xml中的 application标记内
Add this line in your project AndroidManifest.xml, inside 'application' tag
<meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" android:value="[appid here]"/>
这篇关于反应原生Admob无法获取提供者com.google.android.gms.ads.MobileAdsInitProvider:java.lang.IllegalStateException:的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!