1234567891011121314151617181920212223242526272829 |
- apply plugin: 'com.android.library'
- apply from: 'library.gradle'
- android {
- compileSdkVersion 30
- buildToolsVersion "31.0.0-rc3"
- defaultConfig {
- minSdkVersion 14
- targetSdkVersion 30
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- api fileTree(dir: 'libs', include: ['*.jar'])
- androidTestImplementation('androidx.test.espresso:espresso-core:3.3.0-alpha02', {
- exclude group: 'com.android.support', module: 'support-annotations'
- })
- testImplementation 'junit:junit:4.12'
- }
|