无法找到com.google.android.gms.ads.adinfo的提供商信息

时间:2016-01-07 02:48:29

标签: android android-studio

我在Eclipse下开发了一个有效的Android项目,并且大约一年没有继续开发。介于两者之间,我有一个测试版的Android工作室升级我的项目...现在最后,我用当前版本加载它并试图在模拟器中运行它(API 15,Android 4.0.3,x86 cpu内核) 。 但是,出现以下错误消息并且应用程序已终止:

E/ActivityThread: Failed to find provider info for com.google.android.gms.ads.adinfo
E/webkit: Exception: content://com.google.android.gms.ads.adinfo/any.gif

知道是什么原因以及如何解决它?当我在Eclipse下使用时,该应用程序在同一环境中编译良好...有点感觉需求和/或声明可能已经改变。

1 个答案:

答案 0 :(得分:0)

    In between the world has also moved from maven to gradle build system , you need to add following into your gradle

    apply plugin: 'com.android.application'
        ...

        dependencies {
            compile 'com.google.android.gms:play-services-maps:8.4.0'
compile 'com.google.android.gms:play-services-ads:8.4.0'

        }