在引入 库文件时候,AS报错,第一反应 抓狂,然而没用
Manifest merger failed : Attribute application@appComponentFactory value=(android.support.v4.app.CoreComponentFactory) from [com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91
is also present at [androidx.core:core:1.0.0] AndroidManifest.xml:22:18-86 value=(androidx.core.app.CoreComponentFactory).
Suggestion: add 'tools:replace="android:appComponentFactory"' to <application> element at AndroidManifest.xml:5:5-20:19 to override.
各种 尝试后,发现 原来 AS早已经给出提示
果断 在清单文件 添加如下代码
<application
...
android:theme="@style/AppTheme"
tools:replace="android:appComponentFactory">
竟然 还是报错了?
Manifest merger failed with multiple errors, see logs
百度后 还是牛人多 ,再添加一行代码 就会
android:appComponentFactory=""
tools:replace="android:appComponentFactory"
————————————————
版权声明:本文为优快云博主「米小豆361」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.youkuaiyun.com/zxwd2015/article/details/86651216