| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- plugins {
- id 'com.android.library'
- }
- apply from: 'publish.gradle'
- android {
- compileSdk 32
- defaultConfig {
- minSdk 21
- targetSdk 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
- }
- }
- configurations.all {
- resolutionStrategy {
- // don't cache changing modules at all
- cacheChangingModulesFor 10, 'seconds'
- }
- }
- dependencies {
- compileOnly 'androidx.annotation:annotation:+'
- compileOnly "extra.common:oaid:1.0.0-SNAPSHOT"
- compileOnly 'com.google.android.gms:play-services-ads-identifier:+'
- compileOnly "com.tencent:mmkv:+"
- }
|