清单合并对appComponentFactory失败

清单合并对appComponentFactory失败

使用Google所谓的Material Design 2.0要求您添加

implementation 'com.google.android.material:material:1.0.0-rc01'

在应用程式Gradle中,其中还包括

implementation 'com.android.support:appcompat-v7:28.0.0-rc02'

显示冲突

这是日志所说的

Manifest merger failed : Attribute application@appComponentFactory value=(android.support.v4.app.CoreComponentFactory) from [com.android.support:support-compat:28.0.0-rc02] AndroidManifest.xml:22:18-91   is also present at [androidx.core:core:1.0.0-rc01] AndroidManifest.xml:22:18-86 value=(androidx.core.app.CoreComponentFactory).     Suggestion: add 'tools:replace="android:appComponentFactory"' to <application> element at AndroidManifest.xml:5:5-19:19 to override.

即使将其添加到清单中,它仍显示清单合并失败,并出现多个错误


慕侠2389804
浏览 2338回答 3
3回答

拉风的咖菲猫

在build.gradle文件中将所有android依赖项替换为androidx依赖项。例如:implementation&nbsp;'androidx.appcompat:appcompat:1.0.0'implementation&nbsp;'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'implementation&nbsp;'androidx.annotation:annotation:1.0.0'androidTestImplementation&nbsp;'androidx.test:runner:1.1.0-alpha3'androidTestImplementation&nbsp;'androidx.test.espresso:espresso-core:3.1.0-alpha4'
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Android