Google服务插件

时间:2018-03-23 10:05:17

标签: android firebase-authentication

我第一次尝试使用Firebase。我在firebase中安装了一个项目。

Project - build.gradle

dependencies {
    classpath 'com.android.tools.build:gradle:3.0.1'
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    classpath 'com.google.gms:google-services:3.2.0'
}

allprojects {
repositories {
    google()
    jcenter()
    maven {
        url "https://maven.google.com" // Google's Maven repository
          }
    }
}

App - build.gradle

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

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
compile 'com.google.firebase:firebase-core:12.0.0'
compile 'com.google.firebase:firebase-auth:12.0.0'
}

但是,在同步Gradle时,我收到此错误

错误:任务':app:processDebugGoogleServices'执行失败。

  

请修改版本冲突,方法是更新google-services插件的版本(https://bintray.com/android/android-tools/com.google.gms.google-services/提供有关最新版本的信息)或将com.google.android.gms版本更新为11.4.2

我错过了什么,这里有什么不对。

2 个答案:

答案 0 :(得分:0)

您需要添加以下内容:

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

位于App build.gradle文件的底部。

答案 1 :(得分:0)

你应该删除一行   申请插件:' com.google.gms.google-services' 因为" com.android.application"包已经有相同的包。 所以添加

申请插件:' com.android.application' 而不是

应用插件:' com.google.gms.google-services'