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

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

这个bug真的是遇到过不下十次,网上搜索了很多,问题解决方案大致如下:

1、在Manifest.xml的application标签下添加tools:replace="android:icon, android:theme"(多个属性用,隔开,并且记住在manifest根标签上加入xmlns:tools="http://schemas.android.com/tools",否则会找不到namespace哦)

2、在build.gradle根标签上加上useOldManifestMerger true (懒人方法)

但是以上方法对我没用。

我的解决方法如下图:

Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple errors, see logs_第1张图片

在AndroidManifest.xml文件中,打开'Merged Manifest'界面,查看右边区域是否有红色报错信息,选择报错的指示行即可。

我修改的内容为:在AndroidManifest.xml文件的application标签下的tools属性中添加一个android:hardwareAccelerated

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

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