清单合并失败: Attribute application@appComponent entFactory-Androidx

当我用 androidx构建 Gradle 时,我得到了以下错误。请帮助我解决这个问题。

错误消息: 清单合并失败: 属性 Application@appComponent entFactory Value = (android.support. v4.app. CoreComponent entFactory) [ com.android.support: support-compat: 28.0.0] Xml: 22:18-91也出现在 [ androidx.core: core: 1.0.0] AndroidManifest.xml: 22:18-86 Value = (androidx.core.app. CoreComponent).

舱单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.kanwarpreet.dealmybook">


<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">


<activity android:name=".activities.SplashActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".activities.LoginActivity" />
<activity android:name=".activities.RegisterActivity" />
<activity
android:name=".activities.HomeActivity"
android:label="@string/title_activity_home"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".activities.BookDetailsActivity"
android:label="@string/title_activity_book_details"
android:theme="@style/AppTheme.NoActionBar"/>
<activity android:name=".activities.AddBookActivity" />
</application>


</manifest>

建造,分级:

apply plugin: 'com.android.application'


android {
compileSdkVersion 28
defaultConfig {
applicationId "com.kanwarpreet.dealmybook"
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:support-v4:28.0.0'
implementation 'com.google.android.material:material:1.0.0'
implementation 'com.jakewharton:butterknife:10.1.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.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'
}
93225 次浏览

找出确切原因的一个建议是打开清单文件,在底部您将看到一个 合并清单选项,您将看到失败的确切原因。

见下图

enter image description here

把这些旗子放进你的 gradle.properties

android.enableJetifier=true
android.useAndroidX=true

错误显式地说-

[ com.android.support: support-compat: 28.0.0] Xml: 22:18-91也出现在 [ androidx.core: 1.0.0]

AndroidX 是 Google 最新的支持库。它包含来自 所有旧的应用程序版本的所有以前的组件。不要使用 appcompat-v-any 数字.相反,使用来自 AndroidX 库的类似组件。删除有编号的支持库,不管它是从哪里导入的,都可以从 Gradle 和代码中删除它们。那就同步你的等级。

组件相似度表可以找到 给你。另外,按照 迁移到 AndroidX中提到的步骤。

同样,停止使用任何以前的应用程序编号版本。现在只有 AndroidX。

希望这个能帮上忙。

经过几个小时的努力,我通过在 app/build.gradle 中包含以下内容解决了这个问题:

android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}

把这些旗子放到你的分级资产里

android.enableJetifier=true
android.useAndroidX=true

Build.gradle 的变化:

implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.google.android.material:material:1.1.0-alpha04'

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

此错误的原因-

因为在升级之后,当您的项目仍然没有使用 androidx 时,就会访问 androidx.core:core。所以像 CoreComponentFactory这样的类和许多其他类现在可以在两个地方找到—— androidx.core:corecom.android.support:support-compat。这就是出现此错误的原因。

解决办法是什么?

你应该迁移到 AndroidX。如果你不知道 AndroidX。请阅读 什么是 AndroidX?

如何迁移项目

在 Android Studio 3.2(2018年9月)之后,可以直接选择将现有项目迁移到 AndroidX。这会自动折射所有包裹。

在迁移之前,强烈建议备份项目。

现有项目

  • Android Studio > 重构菜单 > 迁移到 AndroidX..。
  • 它将分析并将打开底部的折射窗口。接受要做的改变。

image

新项目

把这些旗子放进你的 gradle.properties

android.enableJetifier=true
android.useAndroidX=true

检查@相同 AndroidX 包的库映射。

检查@迁移到 AndroidX 的官方页面

项目级别设置。 IDE (例如 Android Studio)用户: 通过 IDE 将覆盖配置的级别设置在此文件中指定的任何设置。更多关于如何配置构建环境的详细信息,请访问 < a href = “ http://www.gradle.org/docs/current/userguide/build _ Environment.html”rel = “ nofollow norefrer”> http://www.gradle.org/docs/current/userguide/build_environment.html

指定用于守护进程的 JVM 参数。该设置对于调整内存设置特别有用

org.gradle.jvmargs=-Xmx1536m
android.enableJetifier=true
android.useAndroidX=true

配置完成后,Gradle 将以孵化并行模式运行。这个选项应该只用于解耦项目。详情请浏览 http://www.gradle.org/docs/current/userguide/multi_project_builds.html

sec:decoupled_projectsvorg.gradle.parallel=true

Gradle 房地产公司中加一条线

android.enableJetifier=true
android.useAndroidX=true

我还面临这个问题,因为我在项目中使用了一些外部库,其中一个没有转换成 安卓

在 buildscript ext 下将下面的代码添加到 android/build.gradle

googlePlayServicesVersion = "16.0.0"
googlePlayServicesVisionVersion = "17.0.2"

和以下代码到 gradle.properties

android.enableJetifier=true
android.useAndroidX=true

因为你的项目正在使用一些特性,所以你不得不转移到 Androidx 上 所以你需要迁移到 AndroidX 跟随这些片段

看看第二个片段make sure you have check on back project as zip file

我让 Android Studio 将我的 Relative layout视图转换为 Constraint layout。因此,Android Studio 添加了一个 com.andriod.support...,而我在删除第二个时添加了 androidx...依赖项,错误消失了。

dependencies {
implementation "androidx.constraintlayout:constraintlayout:2.1.0"
implementation 'com.android.support.constraint:constraint-layout:2.0.4'
}

这是我的错误:

Manifest merger failed : Attribute application@appComponentFactory value=(androidx.core.app.CoreComponentFactory) from [androidx.core:core:1.3.2] AndroidManifest.xml:24:18-86
is also present at [com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91 value=(android.support.v4.app.CoreComponentFactory).
Suggestion: add 'tools:replace="android:appComponentFactory"' to <application> element at AndroidManifest.xml:7:3-26:17 to override.
 implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:one.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

在清单中,向应用程序添加工具: place = “ android: theme”

我已经解决了问题

 implementation 'com.android.support.constraint:constraint-layout:2.0.4'

来自 app build.gradle 和 using

implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.google.android.material:material:1.1.0-alpha04'

而不是它。