2020-04-08 12:34:28 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
|
|
|
|
android {
|
2020-07-01 02:52:35 +00:00
|
|
|
compileSdkVersion 30
|
2020-04-08 12:34:28 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2020-11-07 01:42:53 +00:00
|
|
|
versionCode 803081
|
|
|
|
versionName '8.3.8'
|
2020-08-18 02:39:29 +00:00
|
|
|
minSdkVersion 21
|
2020-07-01 02:52:35 +00:00
|
|
|
targetSdkVersion 30
|
2020-04-08 12:34:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-04-20 03:28:49 +00:00
|
|
|
// Dependencies must be hardcoded to support F-droid
|
|
|
|
|
2020-04-08 12:34:28 +00:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2020-08-16 23:28:16 +00:00
|
|
|
implementation project(':external')
|
2020-09-07 22:41:22 +00:00
|
|
|
|
|
|
|
// Kotlin
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9'
|
|
|
|
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.0'
|
|
|
|
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.3.9'
|
2020-04-08 12:34:28 +00:00
|
|
|
}
|