- 原因:
- 主程序module清单文件中,application节点的android:icon属性引用了@mipmap/ic_launcher图片资源;
- 而依赖module的清单文件中,同样的android:icon属性却引用了@drawable/ic_launcher这个图片资源;
- 命名空间
xmlns:tools="http://schemas.android.com/tools"
官方文档:The manifest merger tool combines all XML elements from each file by following some merge heuristics and by obeying merge preferences that you have defined with special XML attributes. This page describes how manifest merging works and how you can apply merge preferences to resolve merge conflicts.【总结:这个命名空间就是用来解决合并项目或者导入第三方库的时候可能会发生的xml文件冲突的问题】
-
节点
tools:node="replace"
介绍- Replace the lower-priority element completely. That is, if there is a matching element in the lower-priority manifest, ignore it and use this element exactly as it appears in this manifest.【完全取代低优先级元素,如果在低优先级清单文件中存在匹配的元素,忽略它并且使用同样的元素替代它】
官方文档地址:https://developer.android.com/studio/build/manifest-merge.html
- 解决方式:
- 在清单文件中添加命名空间:
xmlns:tools="http://schemas.android.com/tools"
- 在
application
标签中添加属性:tools:replace="android:icon"
- 在清单文件中添加命名空间:
-
图片演示:
2017/1/8 20:26:59
解决:Android Studio添加依赖时出现“Manifest merger failed”的错误
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- Correctness AdapterViewChildren Summary: AdapterViews can...
- Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...