Android 功能很强大的弹窗XPopup

111 阅读1分钟

一 、 Gradle

**

implementation  'com.github.li-xiaojun:XPopup:2.6.6'

jitpack还要求在工程根目录的build.gradle中添加如下:

**

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

其中编译版本必须 >= 29:
compileSdkVersion 29

必须添加的依赖库,版本不用和我一致:

**

implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'

混淆

**

-dontwarn com.lxj.xpopup.widget.**
-keep class com.lxj.xpopup.widget.**{*;}