Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple errors, see logs

报这个错误应该是你的工程导如一个moudle导致的,

解决方案:

Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple errors, see logs_第1张图片
这是主工程的gradle


Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple errors, see logs_第2张图片
这是module中的gradle

保证编译版本和运行版本一致就可以了,

然后在工程的application标签下添加tools:replace="Android:icon, android:theme"(多个属性用,隔开,并且记住在manifest根标签上加入xmlns:tools="http://schemas.android.com/tools")加上这句就可以了

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