尝试连接到Firebase时清单合并失败

时间:2019-07-23 21:17:02

标签: java android firebase kotlin android-gradle

我正在尝试将我的应用与Firebase连接,所以我添加了 类路径,实现和“应用插件”到我的毕业文件 enter image description here

但是当我尝试运行应用程序时,会发生此错误:

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

问题是,当我添加

tools:replace="android:appComponentFactory"

在建议中,发生了更多的错误。 我该如何解决这个问题?

这是我的gradle文件。模块:

    apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "lt.tetro.testapp"
        minSdkVersion 19
        targetSdkVersion 28
        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(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.google.firebase:firebase-core:17.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'

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

项目:

    // Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    ext.kotlin_version = '1.3.10'
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'com.google.gms:google-services:4.2.0'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

2 个答案:

答案 0 :(得分:1)

firebase-core:17.0.0包含在AndroidX中,因此请更新您的应用程序以使用Jetpack(AndroidX)。

您可以查看以下链接中的说明:

https://developer.android.com/jetpack/androidx/migrate

  

在Android Studio 3.2及更高版本中,您可以通过从菜单栏中选择重构>迁移到AndroidX,来快速迁移现有项目以使用AndroidX。

答案 1 :(得分:1)

尝试将您的项目迁移到AndroidX,但我遇到了同样的问题,并且解决了该问题