123456789101112131415161718192021222324 |
- apply plugin: 'com.android.library'
- apply from: 'library.gradle'
- android {
- compileSdkVersion 30
- buildToolsVersion '31.0.0-rc3'
- defaultConfig {
- minSdkVersion 9
- targetSdkVersion 30
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- testImplementation 'junit:junit:4.12'
- }
|