繁体   English   中英

E/AndroidRuntime:致命异常:应用启动时主要崩溃

[英]E/AndroidRuntime: FATAL EXCEPTION: main crash when app start

D/AndroidRuntime: Shutting down VM
E/AndroidRuntime: FATAL EXCEPTION: main
    Process: com.dslr.camera.pixol, PID: 8021
    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:6988)
    at android.app.ActivityThread.installContentProviders(ActivityThread.java:6528)
    at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6445)
    at android.app.ActivityThread.access$1300(ActivityThread.java:219)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1859)
    at android.os.Handler.dispatchMessage(Handler.java:107)
    at android.os.Looper.loop(Looper.java:214)
    at android.app.ActivityThread.main(ActivityThread.java:7356)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:492)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:930)
 Caused by: 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 com.google.android.gms.internal.ads.zzxw.attachInfo(com.google.android.gms:play-services-ads-lite@@18.3.0:27)
    at com.google.android.gms.ads.MobileAdsInitProvider.attachInfo(com.google.android.gms:play-services-ads-lite@@18.3.0:3)
    at android.app.ActivityThread.installProvider(ActivityThread.java:6983)
        ... 10 more

I/Process:发送信号。 PID:8021 SIG:9 进程 8021 终止。

compileSdkVersion 29
flavorDimensions "default"
buildToolsVersion "29.0.2"
defaultConfig {
    minSdkVersion 21
    targetSdkVersion 29
    multiDexEnabled true

我不明白问题出在哪里,编译没问题,当我尝试运行应用程序时,我崩溃并退出应用程序。 我能做什么,请帮帮我谢谢

您是否尝试按照日志中的说明在 AndroidManifest.xml 中添加您的应用程序 ID? 我注意到第二个链接似乎不起作用; 您可能需要更新到最新的 google-mobile-ads sdk (18.3.0)。

你可以找到AndroidManifest应用程序ID设置指南在这里的第一个链接如下。

参考: 无法获取提供商 com.google.android.gms.ads.MobileAdsInitProvider:java.lang.IllegalStateException:为什么?

您需要在应用程序级别或活动中初始化 Admob,因此您需要在 onCreate 之后添加此行。

String AdmobID ="ca-app-pub-3940256099942544~3347511713";    
MobileAds.initialize(this, AdmobID);

并且不要忘记将 AdmobId 替换为您的。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM