为什么在添加Firebase存储依赖项时给我错误

时间:2019-07-02 21:34:13

标签: android firebase gradle androidx

尝试使用firebase-storage依赖时出现错误 它给了我这个错误

  • 出了什么问题: 任务':app:processDebugManifest'的执行失败。
      

    清单合并失败:来自[com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91的属性application @ appComponentFactory value =(android.support.v4.app.CoreComponentFactory)   也存在于[androidx.core:core:1.0.0] AndroidManifest.xml:22:18-86 value =(androidx.core.app.CoreComponentFactory)。   建议:在AndroidManifest.xml:6:5-22:19的元素上添加'tools:replace =“ android:appComponentFactory”'以进行覆盖。

我使用android studio中内置的重构工具迁移到AppCompat

这是我的gradle文件

  dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
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.firebase:firebase-core:17.0.0'
implementation 'com.google.firebase:firebase-firestore:20.1.0'

} 应用插件:“ com.google.gms.google-services”

0 个答案:

没有答案
相关问题