如何在Android Studio中找到Google Play服务版本?

时间:2016-05-31 11:58:44

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

我正在尝试使用Google Play服务进行定位。因此,我想将谷歌播放服务添加到我的应用程序。在build.gradle依赖项中,我添加了以下行。

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

但是它会出现以下错误

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

我无法找到安装了哪个版本的Google Play服务。在SDK工具选项卡中,它表示版本30.

我也尝试过跟踪行,但它也给出了相同的错误

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

编辑:这是整个build.gradle文件。

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "ozu.cs394.umurali.whereismycar"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.google.android.gms:play-services:9.0.1'
}

3 个答案:

答案 0 :(得分:15)

  • 转到文件 - >项目结构
  • 选择“项目设置”
  • 选择“依赖关系”标签
  • 点击“+”并选择“1.Library Dependencies”
  • 搜索:com.google.android.gms:play-services
  • 选择最新版本,然后单击“确定”

答案 1 :(得分:1)

您应该在sdk manager中更新google play服务存储库:

enter image description here

答案 2 :(得分:0)

检查Extras下的SDK Manager,确保已安装Google Repository