添加Firebase库时如何修复com.android.support库版本错误

时间:2019-04-08 16:55:47

标签: android firebase

当我尝试按firebase指示插入库,并尝试同步项目时,出现此错误:

Error image

此支持库使用的版本(26)不应少于compileSdkVersion(27)...(Ctrl + F1) 检查信息:库,工具和库的某些组合不兼容或可能导致错误。一种不兼容的情况是使用不是最新版本(或特别是低于targetSdkVersion的版本)的Android支持库版本进行编译。

我尝试遵循一些指南(https://firebase.google.com/docs/android/setup?authuser=0)和该问题的以往答案,但错误仍然存​​在

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.3'
    implementation 'com.google.firebase:firebase-core:16.0.8'
    implementation 'com.google.firebase:firebase-auth:16.2.1'
    implementation 'com.google.firebase:firebase-database:16.1.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'

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

2 个答案:

答案 0 :(得分:1)

请确保您在应用27.1.1中为build.gradle android支持使用相同的API级别27:

android {
    compileSdkVersion 27
    defaultConfig {
       .
       minSdkVersion 15
       targetSdkVersion 27
       .
       .
       .
}
.
}

更新

这可能是由于与Firebase版本冲突引起的。参见此question。 尝试添加依赖关系的实现,以解决此冲突:

def android_api = "27.1.1"
implementation "com.android.support:appcompat-v7:$android_api"

implementation "com.android.support:animated-vector-drawable:$android_api"
implementation "com.android.support:exifinterface:$android_api"
implementation "com.android.support:cardview-v7:$android_api"
implementation "com.android.support:customtabs:$android_api"
implementation "com.android.support:support-media-compat:$android_api"
implementation "com.android.support:support-v4:$android_api"

答案 1 :(得分:0)

更新:

implementation 'com.android.support:support-media-compat:26.1.0'

到以下:

implementation 'com.android.support:support-media-compat:27.1.1'

因此,它可以与appcompat-v7相同的版本