38 lines
997 B
Groovy
Raw Normal View History

2025-05-28 10:07:57 +08:00
plugins {
id 'com.android.library'
}
android {
compileSdkVersion 33
defaultConfig {
minSdkVersion 21
targetSdkVersion 33
versionCode 1
versionName "1.0"
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.4.1'
def dialogx_version = "0.0.49"
api "com.kongzue.dialogx:DialogX:${dialogx_version}"
api "com.kongzue.dialogx.style:DialogXMaterialYouStyle:${dialogx_version}"
implementation 'com.github.bumptech.glide:glide:4.12.0'
implementation "androidx.recyclerview:recyclerview:1.2.1"
api 'com.github.getActivity:XXPermissions:21.3'
}