2021-01-10 10:11:04 +00:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
kotlin("android")
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2021-10-08 15:10:32 +00:00
|
|
|
compileSdk = 30
|
2021-01-10 10:11:04 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2021-10-08 15:10:32 +00:00
|
|
|
minSdk = 21
|
|
|
|
targetSdk = 31
|
2021-01-10 10:11:04 +00:00
|
|
|
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
getByName("release") {
|
|
|
|
isMinifyEnabled = false
|
|
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildFeatures {
|
|
|
|
viewBinding = true
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("stdlib"))
|
|
|
|
implementation(kotlin("reflect"))
|
2021-10-08 15:10:32 +00:00
|
|
|
implementation("androidx.core:core-ktx:1.6.0")
|
|
|
|
implementation("androidx.appcompat:appcompat:1.3.1")
|
|
|
|
implementation("androidx.activity:activity-ktx:1.3.1")
|
|
|
|
implementation("com.google.android.material:material:1.4.0")
|
2021-01-10 10:11:04 +00:00
|
|
|
|
|
|
|
//https://developer.android.com/jetpack/androidx/releases/lifecycle
|
2021-04-20 14:38:05 +00:00
|
|
|
implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.3.1")
|
|
|
|
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1")
|
2021-01-10 10:11:04 +00:00
|
|
|
}
|