AndroidStudio报错Manifest merger failed : Attribute application@appComponentFactory value=(android.sup

在引入 库文件时候,AS报错,第一反应 抓狂,然而没用

  1.   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
  2.   is also present at [androidx.core:core:1.0.0] AndroidManifest.xml:22:18-86 value=(androidx.core.app.CoreComponentFactory).
  3.   Suggestion: add 'tools:replace="android:appComponentFactory"' to <application> element at AndroidManifest.xml:5:5-20:19 to override.

各种 尝试后,发现 原来 AS早已经给出提示

AndroidStudio报错Manifest merger failed : Attribute application@appComponentFactory value=(android.sup

 果断 在清单文件 添加如下代码

  1.   <application
  2.   ...
  3.   android:theme="@style/AppTheme"
  4.   tools:replace="android:appComponentFactory">

竟然 还是报错了?

Manifest merger failed with multiple errors, see logs

百度后 还是牛人多 ,再添加一行代码 就会

  1.   android:appComponentFactory=""
  2.   tools:replace="android:appComponentFactory"
上一篇:java操作excel


下一篇:架构 | 京东商品搜索架构设计