我正在使用Firebase数据库开发Android App,但是将数据库与Firebase链接后,我发现了与版本冲突有关的问题。 我正在使用版本3.1.3。 我进行了很多搜索,发现了与此相关的其他解决方案,但没有解决我的问题。 这是Stackoverflow上的先前可用问题
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.example.usmanali.homeinventoryapp"
minSdkVersion 15
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'
}
}
Link 1 Gradle文件中的Dependanies部分
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.google.firebase:firebase-core:11.8.0'
implementation 'com.google.firebase:firebase-messaging:11.8.0'
implementation 'com.google.firebase:firebase-auth:11.6.0'
implementation 'com.google.firebase:firebase-database: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'
}
答案 0 :(得分:1)
更改此:
implementation 'com.google.firebase:firebase-auth:11.6.0'
对此:
implementation 'com.google.firebase:firebase-auth:11.8.0'