错误:Execution failed for task ':app:processDebugManifest'.
> Manifest merger failed with multiple errors, see logs
出现这个错误是 在导入 其他库的 时候 出现 标签重复 或 与主项目相同的属性 因此 会合并失败
解决方法:
举例 出现重复的 (android:icon和android:theme)
在Manifest.xml的application标签下添加tools:replace=”android:icon, android:theme”(多个属性用,隔开,并且记住在manifest根标签上加入xmlns:tools=”http://schemas.android.com/tools”,否则会找不到namespace)
安卓交流群 : 595856941