123456789101112131415161718192021222324252627282930313233343536 |
- apply plugin: 'com.android.library'
- group = "com.kongzue.dialogx"
- version = BUILD_VERSION
- android {
- compileSdkVersion 30
- defaultConfig {
- minSdkVersion 21
- targetSdkVersion 30
- consumerProguardFiles "consumer-rules.pro"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- }
- task sourcesJar(type: Jar) {
- from android.sourceSets.main.java.srcDirs
- classifier = 'sources'
- }
- artifacts {
- archives sourcesJar
- }
- dependencies {
- implementation 'androidx.appcompat:appcompat:1.2.0+'
- compileOnly files('libs\\androidx-rs.jar')
- api files('libs\\DialogXInterface.jar')
- }
|