本文主要是介绍Android Studio集成Sweet Alert Dialog报错(Error:Execution failed for task ':app:processDebugManifest'.),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Sweet Alert Dialog项目地址:
https://github.com/pedant/sweet-alert-dialog/blob/master/README.zh.md
导入方式:
Gradle
dependencies {
compile ‘cn.pedant.sweetalert:library:1.3’
}
方案来源:http://www.tuicool.com/articles/3qEjIrN
分析错误:
主程序module清单文件中, application 节点的 android:icon 属性引用了 @mipmap/ic_launcher 图片资源,
而依赖module的清单文件中,同样的 android:icon 属性却引用了 @drawable/ic_launcher 这个图片资源,
两个属性值产生冲突,导致合并清单文件失败。
解决方案,其实错误提示中就给出了解决问题的建议。
Suggestion: add ‘tools:replace=”android:icon”‘ to element at AndroidManifest.xml:5:5 to override
意思在 AndroidManifest.xml 文件的 节点中添加 tools:replace=”android:icon” 属性。
如图所示:
最后rebuild就行了。
这篇关于Android Studio集成Sweet Alert Dialog报错(Error:Execution failed for task ':app:processDebugManifest'.)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!