安装Google Play服务

时间:2017-10-13 14:38:51

标签: android google-play-services google-location-services

我想在Google Play服务中使用位置API

这是顶级gradle文件:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.3'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

这是我的应用级gradle文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.1"
    defaultConfig {
        applicationId "..."
        minSdkVersion 14
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors {
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    //    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    //        exclude group: 'com.android.support', module: 'support-annotations'
    //    })
    compile 'com.android.support:appcompat-v7:25.0.1'
    compile 'com.android.support:design:25.0.1'
    compile 'com.android.support:recyclerview-v7:25.0.1'
    compile 'com.google.android.gms:play-services:11.4.2'
}

当我想构建项目时,会显示以下错误:

Error:(30, 13) Failed to resolve: com.google.android.gms:play-services:11.4.2
Install Repository and sync project
Show in File
Show in Project Structure dialog

我已安装Google Play服务,点击“安装资源库和同步项目”但错误仍然显示

根据此文件: https://developers.google.com/android/guides/setup 我用这行代替了google-play-services依赖:

compile 'com.google.android.gms:play-services-location:11.4.2'
compile 'com.google.android.gms:play-services-maps:11.4.2'

当我构建项目时,显示“无法解决...”错误,但是当我点击“安装存储库和同步项目”时,没有任何反复发生!

有什么问题?版本号有问题吗?还是别的什么?!

2 个答案:

答案 0 :(得分:3)

从编写HERE开始,要使用版本11.2.0中的Google Play服务,您的项目compileSdkVersion必须至少设置为版本26。

  

将应用程序的Play服务依赖项升级到11.2.0或更高版本时,还必须更新应用程序的build.gradle,以指定至少为26(Android O)的compileSdkVersion。这不会改变您的应用运行方式。您不需要更新targetSdkVersion。

由于您的项目在版本25上运行,因此您可以在gradle中导入的最大Google Play服务版本是版本11.0。

compile 'com.google.android.gms:play-services-location:11.0'

答案 1 :(得分:0)

您需要将以下内容添加到项目级别Gradle文件中:

allprojects { 
repositories {
 maven { url "https:// maven.google.com" }
  }
 }
//This is when you are using a version of Gradle below 4.1.

注意 - 如果你这样做,那么你还需要降级你的播放服务依赖版本。更好的方法是更新到最新的compileSDKVersion