解决:Manifest merger failed with multiple errors, see logs

android编译时,遇到如下问题


image.png
image.png

可以看到是gradle在执行processDebugManifest时出错,日志内看不到更具体的内容了,这时候我们需要用命令

gradlew processDebugManifest --stacktrace

来查看更具体的信息

执行后结果如下


image.png

直接指明了在Manifest合并中的冲突有哪些,并给出了解决方案,按照建议修改就可以修复问题

你可能感兴趣的:(解决:Manifest merger failed with multiple errors, see logs)