我是android平台的新手,我正在尝试使用firebase进行登录系统。 我已经观看并遵循了一些教程,代码也很好。我的问题出现在"模块:app",我与版本存在冲突:
请修改版本冲突,方法是更新google-services插件的版本(https://bintray.com/android/android-tools/com.google.gms.google-services/提供有关最新版本的信息)或将com.google.android.gms的版本更新为11.2.2。
这是我的gradle代码: 的模块:应用
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.diogo.VicenteAPP"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:design:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.google.android.gms:play-services:11.2.2'
implementation 'com.google.android.gms:play-services-location:9.2.0'
implementation 'com.google.firebase:firebase-auth:11.2.2'
implementation 'com.google.android.gms:play-services-auth:11.2.2'
android {
defaultConfig {
multiDexEnabled true
}
}
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'
}
apply plugin: 'com.google.gms.google-services'
如果我删除此行:应用插件:' com.google.gms.google-services',它将不会出现任何错误,但应用程序会爆炸
我该怎么做才能解决这个问题?
答案 0 :(得分:0)
将所有这些(gms-services-version
)版本相同: -
使用
implementation 'com.google.android.gms:play-services-location:11.2.2'
而不是
implementation 'com.google.android.gms:play-services-location:9.2.0'