apply plugin: 'com.android.library'
|
|
android {
|
compileSdkVersion 30
|
|
defaultConfig {
|
minSdkVersion 15
|
targetSdkVersion 30
|
versionCode 300
|
versionName "3.0.0"
|
|
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
|
}
|
buildTypes {
|
release {
|
minifyEnabled false
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
}
|
}
|
compileOptions {
|
sourceCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_1_8
|
}
|
}
|
|
dependencies {
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
androidTestCompile('androidx.test.espresso:espresso-core:3.1.0', {
|
exclude group: 'com.android.support', module: 'support-annotations'
|
})
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
testImplementation 'junit:junit:4.12'
|
}
|