2021-09-18 23:37:52 +02:00
|
|
|
plugins {
|
|
|
|
|
id("com.android.library")
|
|
|
|
|
id("kotlin-android")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
compileSdk = sdk.versions.compileSdk.get().toInt()
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
minSdk = sdk.versions.minSdk.get().toInt()
|
|
|
|
|
targetSdk = sdk.versions.targetSdk.get().toInt()
|
|
|
|
|
|
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
|
|
|
|
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 {
|
|
|
|
|
implementation(libs.bundles.kotlin)
|
|
|
|
|
implementation(libs.androidx.core)
|
|
|
|
|
implementation(libs.androidx.appcompat)
|
|
|
|
|
implementation(libs.androidx.browser)
|
|
|
|
|
|
|
|
|
|
implementation(libs.bundles.androidx.lifecycle)
|
|
|
|
|
|
|
|
|
|
implementation(libs.okhttp)
|
|
|
|
|
implementation(libs.bundles.retrofit)
|
|
|
|
|
|
2021-10-10 12:15:54 +02:00
|
|
|
implementation(libs.koin.android)
|
|
|
|
|
|
2021-09-18 23:37:52 +02:00
|
|
|
implementation(project(":preferences"))
|
|
|
|
|
implementation(project(":search"))
|
|
|
|
|
implementation(project(":base"))
|
|
|
|
|
implementation(project(":crashreporter"))
|
|
|
|
|
|
|
|
|
|
}
|