清单合并因Firebase Auth失败

时间:2019-06-22 17:53:51

标签: android android-manifest

实施

implementation 'com.google.firebase:firebase-core:17.0.0'
implementation 'com.google.firebase:firebase-auth:18.0.0'

清单不同步,错误消息如下:

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

我的清单文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.gokhanyilmaz.appseriestracker"
        minSdkVersion 21
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

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'
    implementation 'com.android.support:design:28.0.0'
    implementation 'com.android.support:cardview-v7:28.0.0'
    implementation 'com.squareup.picasso:picasso:2.71828'
    implementation 'com.google.firebase:firebase-core:17.0.0'
    implementation 'com.google.firebase:firebase-auth:18.0.0'
    implementation 'com.google.android.gms:play-services-auth:17.0.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'

3 个答案:

答案 0 :(得分:1)

Firebase在最新版本中已迁移到AndroidX。 这意味着您同时使用了支持库和androidx库。

您可以:

  • 如下所述迁移到androidx
  • 降级您的firebase依赖项(但这不是真正的解决方案,因为您必须在迁移之前或之后进行迁移)

您可以检查official release notes

  

警告:此版本是主要版本的更新和重大更改。   Google Play服务和Firebase的最新更新包括以下更改:

从Android支持库迁移到Jetpack(AndroidX)库。除非您在应用中进行以下更改,否则图书馆将无法工作:

  • com.android.tools.build:gradle升级到v3.2.1或更高版本。
  • compileSdkVersion升级到28或更高版本。
  • 更新您的应用以使用Jetpack(AndroidX);请按照Migrating to AndroidX中的说明进行操作。

答案 1 :(得分:0)

我遇到了和你一样的问题。这就是我解决的方法。您可以尝试:(我使用的是最新的Android版本2019) 我将其更改为:

implementation 'com.google.firebase:firebase-core:17.0.0'

实现'com.google.firebase:firebase-auth:18.0.0'

对此:

 implementation 'com.google.firebase:firebase-core:16.0.5'
implementation 'com.google.firebase:firebase-auth:16.0.5'

,如果您想实现Firebase数据库。我认为我们应该这样做:

implementation 'com.google.firebase:firebase-database:16.0.4'

代替在Firebase文档上进行以下介绍。 希望它对您有用

答案 2 :(得分:0)

您的Firebase版本不兼容。您可以检查最新版本的兼容性,也可以使用此

implementation 'com.google.firebase:firebase-firestore:19.0.2'
implementation 'com.google.firebase:firebase-auth:17.0.0'