37 lines
905 B
Groovy
Raw Permalink 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 {
2025-05-30 17:18:21 +08:00
api project(path: ':DialogX')
api project(path: ':DialogXMaterialYou')
2025-05-28 10:07:57 +08:00
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.github.bumptech.glide:glide:4.12.0'
implementation "androidx.recyclerview:recyclerview:1.2.1"
api 'com.github.getActivity:XXPermissions:21.3'
}