antimine-android/preferences/build.gradle

48 lines
1.2 KiB
Groovy
Raw Permalink Normal View History

2020-12-31 18:01:51 +00:00
plugins {
id 'com.android.library'
id 'kotlin-android'
}
android {
compileSdkVersion 30
defaultConfig {
minSdkVersion 21
targetSdkVersion 30
2021-01-01 15:11:29 +00:00
versionCode 806021
versionName '8.6.2'
2020-12-31 18:01:51 +00:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
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
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
2020-12-31 22:15:57 +00:00
// Dependencies must be hardcoded to support F-droid
2020-12-31 18:01:51 +00:00
// AndroidX
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.preference:preference-ktx:1.1.1'
2020-12-31 19:11:58 +00:00
// Unit Tests
testImplementation 'junit:junit:4.13.1'
testImplementation 'org.mockito:mockito-core:2.24.0'
testImplementation 'com.nhaarman.mockitokotlin2:mockito-kotlin:2.1.0'
testImplementation "io.mockk:mockk:1.10.3"
2020-12-31 18:01:51 +00:00
}