您的位置:首页 > 移动开发

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

2017-07-24 20:44 896 查看
直接在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"**
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐