在旧项目中更新Google Play服务

时间:2017-12-25 17:01:25

标签: android android-studio build.gradle

我有一个使用play-services-location:9.0.1的旧项目,现在我希望它更新为play-services-location:11.8.0。 所以,我在app build.gradle文件中更改了它并尝试同步shows error
我是android工作室的新手任何帮助将不胜感激。

较旧的build.gradle(模块:app)

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion '26.0.2'

defaultConfig {
    applicationId "com.tinmegali.mylocation"
    minSdkVersion 19
    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.4.0'

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

new build.gradle(Module:app)

apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion '26.0.2'

defaultConfig {
    applicationId "com.tinmegali.mylocation"
    minSdkVersion 19
    targetSdkVersion 27
    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:27.0.2'

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

2 个答案:

答案 0 :(得分:2)

点击“添加google maven资源库并同步项目'在错误消息上。

这应该将google maven添加到build.gradle文件并解决问题

答案 1 :(得分:0)

我们可以通过点击“ 添加google maven存储库并同步项目” 自动添加google maven存储库。

但是有时它不起作用,因此我们需要手动添加google maven存储库:

  maven {
            url "https://maven.google.com"
    }

示例:

allprojects {
    repositories {
        jcenter()
        maven { //Add this!
            url "https://maven.google.com"
        }
    }
}