37 lines
846 B
Plaintext
37 lines
846 B
Plaintext
|
plugins {
|
||
|
alias(libs.plugins.looker.android.library)
|
||
|
alias(libs.plugins.looker.hilt.work)
|
||
|
alias(libs.plugins.looker.lint)
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "com.leos.core.data"
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
// TODO: Enable once using
|
||
|
isMinifyEnabled = false
|
||
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"))
|
||
|
}
|
||
|
create("alpha") {
|
||
|
initWith(getByName("debug"))
|
||
|
isMinifyEnabled = true
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
modules(
|
||
|
Modules.coreCommon,
|
||
|
Modules.coreDatabase,
|
||
|
Modules.coreDatastore,
|
||
|
Modules.coreDI,
|
||
|
Modules.coreDomain,
|
||
|
Modules.coreNetwork
|
||
|
)
|
||
|
|
||
|
implementation(libs.kotlinx.coroutines.android)
|
||
|
implementation(libs.fdroid.index)
|
||
|
implementation(libs.fdroid.download)
|
||
|
}
|