一、Manifest merger failed with multiple errors, see logs
在android开发的时候,有时候会遇到这样的问题
Error:Execution failed for task ':test:processDebugManifest'.> Manifest merger failed with multiple errors, see logs
但是要命的是,除了这个log,没有什么其他的有用信息了,怎么办? 处理方式是这样的:
首先进入命令行,输入命令 gradlew processDebugManifest --stacktrace
如果出现Permission denied 输入 chmod +x gradlew 解除权限
mac命令: ./gradlew processDebugManifest --stacktrace(即在命令前面加上./)
这样就轻而易举看到问题所在,解决问题