Android Studio "Manifest merger failed with multiple errors, see logs"

在加入了一个插件之后编译项目报此错误”Manifest merger failed with multiple errors, see logs”,清单文件合并错误
网上查了下,基本就是项目与库的清单文件配置不同.


错误情况1:

由于Library与主项目配置了相同属性引起了冲突,icon,theme,label等.

解决方式:
manifest标签下加入xmlns:tools=”http://schemas.android.com/tools”
application标签下加入tools:replace=”icon,label,theme”属性,取代这些冲突属性.

错误情况2:

由于Library清单文件中minSdkVersion的版本与主项目不同而引起此错误,只需更改为相同的版本即可

你可能感兴趣的:(Android Studio "Manifest merger failed with multiple errors, see logs")