找不到播放服务v 7.8.0

时间:2015-09-11 13:38:47

标签: android google-play-services

我尝试使用新的Google Play服务(7.8.0)编译我的应用程序,我将依赖项添加到gradle.build文件

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

但是我得到了奇怪的编译错误:

Could not find com.google.android.gms:play-services:7.8.0.
 Searched in the following locations:
     https://jcenter.bintray.com/com/google/android/gms/play-services/7.8.0/play-services-7.8.0.pom
     https://jcenter.bintray.com/com/google/android/gms/play-services/7.8.0/play-services-7.8.0.jar
...

我使用最新版本的Android构建工具 - 23.0.1

UPD: jcenter资源库中没有gms文件夹

enter image description here

1 个答案:

答案 0 :(得分:0)

这是因为jcenter未添加到存储库列表中。在你的gradle .. ..

buildscript {
    repositories {
        jcenter()
    }
.
.
.
}


repositories {
    jcenter()
}