| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- plugins {
- id 'com.android.library'
- }
- android {
- compileSdkVersion 30
- defaultConfig {
- minSdkVersion 21
- targetSdkVersion 30
- versionCode 100
- versionName "1.0.0"
- consumerProguardFiles "consumer-rules.pro"
- }
- buildTypes {
- release {
- minifyEnabled true
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- libraryVariants.all { variant ->
- variant.outputs.all {
- def fileName = "AtmobTask" +
- "-v${defaultConfig.versionName}" +
- "-${variant.buildType.name}" +
- ".aar"
- outputFileName = fileName
- }
- }
- }
- dependencies {
- implementation 'androidx.recyclerview:recyclerview:1.2.1'
- compileOnly project(':atmob-ad')
- compileOnly project(':group-ad')
- }
|