| 12345678910111213141516171819202122232425262728293031323334 |
- plugins {
- id 'com.android.library'
- }
- apply from: 'publish.gradle'
- android {
- compileSdkVersion 32
- defaultConfig {
- minSdkVersion 21
- targetSdkVersion 32
- 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 {
- compileOnly "extra.common:core:1.0.0"
- compileOnly 'androidx.annotation:annotation:+'
- compileOnly 'androidx.recyclerview:recyclerview:+'
- compileOnly 'com.google.code.gson:gson:2.8.7'
- compileOnly 'com.github.bumptech.glide:glide:+'
- }
|