错误“请通过更新google-services的版本来解决版本冲突". [英] Error "Please fix the version conflict either by updating the version of the google-services"

查看:271
本文介绍了错误“请通过更新google-services的版本来解决版本冲突".的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

(由Google翻译人员翻译)我搜索了Internet,到处都是人们只要更改build.gradle中的版本.请帮帮我. 我已经准备好更新gms插件,但是我该怎么做?

(translated with Google translator) I searched the Internet, everywhere people just change the version in build.gradle. Help me please. I'm ready to update the gms plugin, but how do I do this?

请通过更新以下版本来解决版本冲突: google-services插件(有关最新版本的信息是 可在 https://bintray.com/android/android-tools /com.google.gms.google-services/) 或将com.google.android.gms的版本更新为16.0.1.

Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/) or updating the version of com.google.android.gms to 16.0.1.

我的项目gradle:

My project gradle:

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.3'
        classpath 'com.google.gms:google-services:3.1.1'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

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

我的模块gradle:

My module gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 'Google Inc.:Google APIs:14'
    defaultConfig {
        applicationId "com.xxx.xxxxxxxx"
        minSdkVersion 14
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors {
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    implementation 'com.android.support:support-v4:27.1.1'
    implementation 'com.google.firebase:firebase-core:11.8.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.google.android.gms:play-services-gcm:15.0.1'
}

apply plugin: 'com.google.gms.google-services'

推荐答案

更改此内容:

classpath 'com.google.gms:google-services:3.1.1'

对此:

classpath 'com.google.gms:google-services:4.0.1'

避免混合版本错误.

还将firebase-core依赖项更新为此:

Also update the firebase-core dependency into this:

implementation 'com.google.firebase:firebase-core:16.0.1'

https://firebase.google.com/support/release-notes/android

这篇关于错误“请通过更新google-services的版本来解决版本冲突".的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆