将Google Play服务添加到gradle(Android Studio)不起作用

时间:2015-10-08 20:55:37

标签: android android-studio gradle google-play-services

我有以下问题:

我已将Google Play Servicesv27.0.0安装到Android Studio中的SDK

之后我将编译依赖项添加到build.gradle(app文件夹):

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.android.support:design:23.0.1'
    compile 'com.google.android.gms:play-services:27.0.0'
}

但是当我尝试将项目与Gradle同步时,我收到此错误消息:

Error:(25, 13) Failed to resolve: com.google.android.gms:play-services:27.0.0

我不知道该怎么做......

2 个答案:

答案 0 :(得分:4)

我认为版本27.0.0不存在最新版本是8.1.0

答案 1 :(得分:3)

任何依赖都可以使用一个技巧 你知道依赖的名称,让我们考虑com.google.android.gms:play-services:

首先,您需要使用此表达式

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

注意加号。点击Sync Now以同步gradle。之后,您将看到IDE建议您不要使用+符号 但现在您可以使用组合Alt+Enter并选择Replace with specific version 现在+符号将替换为此库的最新可用版本。

利润。