完美解决Error:Execution failed for task ':processDebugManifest'的BUG

  • 原因描述:

今天遇到一个问题,如下图所示。先说下出现的原因,我将注册码认证的逻辑上传到jcenter上,然后在本地代码中引用时出现了这个问题。
完美解决Error:Execution failed for task ':processDebugManifest'的BUG_第1张图片

  • 解决
    看到这个问题的时候不要着急,看AS提示。android Studio 右下角的Gradle Console

完美解决Error:Execution failed for task ':processDebugManifest'的BUG_第2张图片

如上图所示,Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
Run with --stacktrace Run with --info --debug option 这三个链接其实是gradle命令,目的是查看更多的报错信息。
点击Run with --info,看下提示的内容。
完美解决Error:Execution failed for task ':processDebugManifest'的BUG_第3张图片

问题找到了,原来是因为在gradle中引用的上传到jcenter上的jar包里也有meta-data信息

 

本地的代码里也有meta-data信息,都是高德地图需要配置的key。

 

现在按gradle提示的信息,添加tools:replace="android:value"这个字段

首先要在 标签中增加一个 tools 的命名空间 :xmlns:tools=“http://schemas.android.com/tools”,如下所示。


然后在meta-data里面添加tools:replace=“android:value”,如下所示


重新编译运行。

完美解决Error:Execution failed for task ':processDebugManifest'的BUG_第4张图片

多么熟悉的画面。完美解决。
其实报Error:Execution failed for task ‘:processDebugManifest’.
Manifest merger failed with multiple errors, see logs这个错误的原因有很多。本文主要讲怎么去解决这类问题。

你可能感兴趣的:(日常bug)