44 lines
1.1 KiB
Kotlin
44 lines
1.1 KiB
Kotlin
plugins {
|
|
id(BuildPlugins.ANDROID_LIBRARY_PLUGIN)
|
|
id(BuildPlugins.KOTLIN_ANDROID_PLUGIN)
|
|
id(BuildPlugins.KOTLIN_KAPT)
|
|
id(BuildPlugins.DAGGER_HILT_PLUGIN)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.example.local_domain"
|
|
compileSdk = 32
|
|
|
|
defaultConfig {
|
|
minSdk = 28
|
|
targetSdk = 32
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = 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 {
|
|
implementation(Dependency.UnitTest.JUNIT)
|
|
|
|
implementation(Dependency.Hilt.HILT_ANDROID)
|
|
implementation(Dependency.Hilt.INJECT)
|
|
kapt(Dependency.Hilt.HILT_ANDROID_COMPILER)
|
|
} |