48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
plugins {
|
|
id("com.android.library")
|
|
id("kotlin-android")
|
|
id("org.jetbrains.kotlin.android")
|
|
id("com.google.dagger.hilt.android")
|
|
id("com.google.devtools.ksp")
|
|
}
|
|
|
|
android {
|
|
compileSdk = Config.SdkVersion.COMPILE
|
|
namespace = "com.testappbank.test"
|
|
|
|
defaultConfig {
|
|
minSdk = Config.SdkVersion.MIN
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("proguard-rules.pro")
|
|
|
|
}
|
|
|
|
|
|
compileOptions {
|
|
isCoreLibraryDesugaringEnabled = true
|
|
sourceCompatibility = JavaVersion.VERSION_21
|
|
targetCompatibility = JavaVersion.VERSION_21
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding = true
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation(fileTree("dir" to "libs", "include" to listOf("*.jar")))
|
|
// Modules
|
|
implementation(project(":style"))
|
|
implementation(project(":domain:domain"))
|
|
|
|
implementation(libs.lifecycle.livedata.ktx)
|
|
implementation(libs.lifecycle.process)
|
|
implementation(libs.lifecycle.viewmodel.ktx)
|
|
implementation(libs.lifecycle.runtime.ktx)
|
|
|
|
implementation(libs.hilt.android)
|
|
ksp(libs.hilt.compiler)
|
|
|
|
coreLibraryDesugaring(libs.desugar.jdk.libs)
|
|
} |