使用开源sweetalert出现Error:Execution failed for task ':app:processDebugManifest'.

来源:互联网 发布:关于网络暴力的演讲稿 编辑:程序博客网 时间:2024/06/10 04:39

直接在build.gradle里添加compile
后抛出以下错误:Error:Execution failed for task ‘:app:processDebugManifest’.

Manifest merger failed : Attribute application@icon value=(@mipmap/ic_launcher) from AndroidManifest.xml:12:9-43
is also present at [com.pnikosis:materialish-progress:1.0] AndroidManifest.xml:13:9-45 value=(@drawable/ic_launcher).
Suggestion: add ‘tools:replace=”android:icon”’ to element at AndroidManifest.xml:10:5-28:19 to override.

解决方法:修改AndroidManifest.xml
添加以下两段:

xmlns:tools="http://schemas.android.com/tools"tools:replace="android:icon,android:theme,android:allowBackup,android:label,android:supportsRtl"

具体如下

<manifest xmlns:android="http://schemas.android.com/apk/res/android"    package="com.example.android.scoretest"    **xmlns:tools="http://schemas.android.com/tools"**>    <uses-permission android:name="android.permission.INTERNET" /><application**tools:replace="android:icon,android:theme,android:allowBackup,android:label,android:supportsRtl"**
阅读全文
0 0
原创粉丝点击