29 lines
678 B
Plaintext
29 lines
678 B
Plaintext
|
plugins {
|
||
|
alias(libs.plugins.looker.android.library)
|
||
|
alias(libs.plugins.looker.room)
|
||
|
alias(libs.plugins.looker.hilt)
|
||
|
alias(libs.plugins.looker.serialization)
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "com.leos.core.database"
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
isMinifyEnabled = true
|
||
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"))
|
||
|
}
|
||
|
create("alpha") {
|
||
|
initWith(getByName("debug"))
|
||
|
isMinifyEnabled = true
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
modules(Modules.coreCommon, Modules.coreDomain)
|
||
|
|
||
|
implementation(libs.kotlinx.coroutines.android)
|
||
|
implementation(libs.androidx.core.ktx)
|
||
|
}
|