清单合并对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.即使将其添加到清单中,它仍显示清单合并失败,并出现多个错误
3 回答
拉风的咖菲猫
TA贡献1995条经验 获得超2个赞
在build.gradle文件中将所有android依赖项替换为androidx依赖项。
例如:
implementation 'androidx.appcompat:appcompat:1.0.0'implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'implementation 'androidx.annotation:annotation:1.0.0'androidTestImplementation 'androidx.test:runner:1.1.0-alpha3'androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
- 3 回答
- 0 关注
- 2337 浏览
添加回答
举报
0/150
提交
取消