32

我有一个带有 Google Play services rev 的干净的 Android 项目。13 按照这些说明通过 SDK 管理器安装。

我的build.gradle文件如下:

dependencies {
    compile 'com.google.android.gms:play-services:4.0.30'
}

但是,当我尝试构建这个应用程序时,我得到

Gradle: A problem occurred configuring project ':Maple'.
> Failed to notify project evaluation listener.
   > Could not resolve all dependencies for configuration ':Maple:_DebugCompile'.
      > Could not find com.google.android.gms:play-services:4.0.30.
        Required by:
            MapleProject:Maple:unspecified
4

3 回答 3

92

在 SDK 管理器中安装 Google 存储库。

于 2013-11-13T01:37:52.533 回答
4

即使您已在 SDK 管理器中安装了 Google Repository,您仍可能会看到相同的错误。

另一种可能的解决方案是降级您的版本。

例如,而不是

compile 'com.google.android.gms:play-services:11.2.0'

compile 'com.google.android.gms:play-services:11.0.4'

通知 11.2.0 在 Google 的设置 Google Play 服务页面中进行了宣传,但它对我不起作用。

于 2017-08-17T16:21:16.730 回答
-1

您是否在 Avd 上进行测试(模拟器或设备?)如果模拟器请检查以下内容:我通过创建一个目标版本为的新 avd 解决了这个问题:Google APIs(GoogleInc) API Level 18。(需要平台 4.3 google api)

于 2013-11-12T06:11:04.580 回答