Manifest merger failed
Posted 爱看美剧真是太好了
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Manifest merger failed相关的知识,希望对你有一定的参考价值。
1. 写在前面
我有一个项目A 和一个库B,项目A依赖了B,但是当运行时,报了这个错。
Error:Execution failed for task ':sample:processDebugManifest'.
> Manifest merger failed : Attribute application@allowBackup value=(false) from androidManifest.xml:9:9-36
is also present at [MediaListPro:ucrop:unspecified] AndroidManifest.xml:12:9-35 value=(true).
Suggestion: add 'tools:replace="android:allowBackup"' to <application> element at AndroidManifest.xml:8:5-44:19 to override.
见图:
2. 解决
从提示的错误来看,很明显这两个工程中的manifest出问题了,准确的说是
allowBackup value=(false)
出问题了,因为两个项目中都有这个属性,见图,而合并时(merger),两个不同,其实我认为解决这个问题的方法很多,可以将两个都删掉或者删掉一个或者改成一样的,但是as推荐了我们其他的方法,我们还是用它推荐的吧。
提示推荐我们
Suggestion: add 'tools:replace="android:allowBackup"' to <application> element at AndroidManifest.xml:8:5-44:19 to override.
让我们在主工程A中的application标签中加一个属性
tools:replace="android:allowBackup
见上面那张图,我已经加了那条属性了,然后clean没问题!
阅读世界,共赴山海 423全民读书节,邀你共读以上是关于Manifest merger failed的主要内容,如果未能解决你的问题,请参考以下文章
解决『Manifest merger failed with multiple errors, see 』
AS添加依赖库提示Manifest merger failed解决办法
:app:processDebugMainManifest Manifest merger failed with multiple errors, see logs
Manifest merger failed with multiple errors, see logs问题处理