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
其中,processDebugManifest是log里面提到的,这个命令是会了获取更多的log信息。