Admob横幅广告未在Android P中加载

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Admob横幅广告未在Android P中加载相关的知识,希望对你有一定的参考价值。

我在多进程中使用AdMob横幅广告。它在低于29的API版本上工作正常,但在android-P上,它给出了这个错误。

 com.google.android.gms.ads.internal.webview.s: Webview initialization failed.
    at com.google.android.gms.ads.internal.webview.o.a(:com.google.android.gms.policy_ads_fdr_dynamite@6000@6000.204543870.204543870:5)
    at com.google.android.gms.ads.internal.i.a(:com.google.android.gms.policy_ads_fdr_dynamite@6000@6000.204543870.204543870:6)
    at com.google.android.gms.ads.internal.y.a(:com.google.android.gms.policy_ads_fdr_dynamite@6000@6000.204543870.204543870:4)
    at com.google.android.gms.ads.internal.l.run(:com.google.android.gms.policy_ads_fdr_dynamite@6000@6000.204543870.204543870:11)
    at android.os.Handler.handleCallback(Handler.java:873)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at com.google.android.gms.ads.internal.util.f.dispatchMessage(:com.google.android.gms.policy_ads_fdr_dynamite@6000@6000.204543870.204543870:1)
    at android.os.Looper.loop(Looper.java:193)
    at android.app.ActivityThread.main(ActivityThread.java:6669)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:493)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
 Caused by: java.lang.RuntimeException: Using WebView from more than one process at once with the same data directory is not supported. https://crbug.com/558377

我在应用程序类中初始化了MobileAds。我也尝试在其他使用广告但没有运气的过程中进行初始化。

答案

注意你的错误中的这一行:“Caused by: java.lang.RuntimeException: Using WebView from more than one process at once with the same data directory is not supported.

这意味着您的应用程序正在使用2个或更多进程,您需要为每个进程设置不同的WebView目录(主进程已经有默认文件夹),如我的question and answer here中所述。

在Android 9.0 API 28上,在使用任何WebView.setDataDirectorySuffix("any-folder-name")之前,在第二个进程运行时调用WebView

以上是关于Admob横幅广告未在Android P中加载的主要内容,如果未能解决你的问题,请参考以下文章

admob 广告未在 Android 应用程序 apk 中显示

admob 广告未在 Android 应用程序 apk 中显示

AdMob横幅未在设备上显示

iAd 和 AdMob 广告未在已发布的 iPhone 应用程序中显示

Admob 横幅广告在 Android 上无法正常工作

(Unity) Admob 横幅未在 Android 7.0 上显示