Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple

解决过程:

1、Error:Executionfailedfortask':test:processDebugManifest'.>Manifestmergerfailedwithmultipleerrors,seelogs但是要命的是,除了这个log,没有什么其他的有用信息了

首先进入命令行,输入命令

gradlew processDebugManifest --stacktrace
其中,processDebugManifest是log里面提到的,这个命令是会了获取更多的log信息。
--------------------- 
原文:https://blog.****.net/dengweijunkedafu/article/details/80541104 

Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple

2、但是运气不好会出现下面错误

Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple

这是缺少了文件,随便新建个项目,把文件复制到项目中,然后继续执行第一步操作

Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple

3、找到主要的错误信息详情

Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple
查看到是引入项目的包的版本不统一的问题,统一修改为  26.1.0就可以完美解决此报错

这个错误是综合问题,根据具体情况自己处理,这只是解决思路