1. 程式人生 > >Android中引用sweet-alert-dialog以及遇到的問題解決

Android中引用sweet-alert-dialog以及遇到的問題解決

posit merger 不一致 failed sch sweet 一個 問題解決 alert

概述

sweet-alert-dialog是一個帶動畫效果的自定義對話框樣式,可以讓你的Android程序的對話框優美很多。GitHub地址

Android Studio中引用

repositories {
    mavenCentral()
}

dependencies {
    compile ‘cn.pedant.sweetalert:library:1.3‘
}

問題及解決方案

  1. 錯誤信息
    Error:Execution failed for task ‘:app:processDebugManifest‘.
    > Manifest merger failed : Attribute application@icon value=(@mipmap/ic_launcher) from AndroidManifest.xml:27: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 <application> element at AndroidManifest.xml:25:5-46:19 to override.

    直接Make Project遇到了這個Manifest merger錯誤,因為我在application中設置的icon和sweet-alert-dialog中設置的icon不一致。

  2. 解決方案
    在manifest標簽中加入:
    xmlns:tools="http://schemas.android.com/tools"

    在application中加入

    tools:replace="icon"

    重新Make Project,問題解決~

Android中引用sweet-alert-dialog以及遇到的問題解決