AndroidManifest merger failed with multiple errors, see logs

在android开发的时候,有时候会遇到这样的问题Error:Executionfailedfortask':test:processDebugManifest'.>Manifestmergerfailedwithmultipleerrors,seelogs但是要命的是,除了这个log,没有什么其他的有用信息了,怎么办?处理方式是这样的:首先进入命令行,输入命令gradlewprocessDebugManifest--stacktrace其中,processDebugM
在android开发的时候,有时候会遇到这样的问题

Error:Execution failed for task ':test:processDebugManifest'.> Manifest merger failed with multiple errors, see logs
但是要命的是,除了这个log,没有什么其他的有用信息了,怎么办?

处理方式是这样的: 
首先进入命令行,输入命令

gradlew processDebugManifest --stacktrace
其中,processDebugManifest是log里面提到的,这个命令是会了获取更多的log信息。
 

以上是Manifest merger failed with multiple errors, see logs问题处理的内容

注意:在mac下执行的命令是:./gradlew processDebugManifest --stacktrace(即在命令前面加上./)
 

你可能感兴趣的:(Android,kotlin)