Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple errors, see logs综合解决方案

一:查看依赖库的minSdkVersion和targetSdkVersion和你项目的 builde.gradle是否一致

二:去检查 External Libraries


Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple errors, see logs综合解决方案_第1张图片
image.png

看看是不是有两个相同的库版本不一致导致冲突

如果检查并处理完了还是错误,我们继续往下走
三:通过命令窗口指令输出日志
运行命令 gradlew processDebugManifest --stacktrace


Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple errors, see logs综合解决方案_第2张图片
image.png

通过该命令,发现这一次是由项目中的Manifest.xml没有配置qqappid参数引起的

你可能感兴趣的:(Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple errors, see logs综合解决方案)