当前位置:   article > 正文

Manifest merger failed : Attribute application@appComponentFactory value=(android.support.v4.app....

suggestion: add 'tools:replace="android:appcomponentfactory"' to

场景

添加了一个控件的最新依赖版本后报错

问题描述

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-19:19 to override.

报错原因

引入依赖的控件的最新版本已经引入了androidx,而本地没有更新适配

解决方法

如报错信息中提示那般,在AndroidManifest.xml的Application结点下新增以下两行即可:

  1. android:appComponentFactory=""
  2. tools:replace="android:appComponentFactory"
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/824175
推荐阅读
相关标签