36 lines
873 B
Kotlin
36 lines
873 B
Kotlin
plugins {
|
|
alias(libs.plugins.looker.android.library)
|
|
alias(libs.plugins.looker.hilt)
|
|
alias(libs.plugins.looker.lint)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.leos.sync.fdroid"
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = true
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"))
|
|
}
|
|
create("alpha") {
|
|
initWith(getByName("debug"))
|
|
isMinifyEnabled = true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
modules(
|
|
Modules.coreCommon,
|
|
Modules.coreDomain,
|
|
Modules.coreNetwork,
|
|
)
|
|
|
|
implementation(libs.kotlinx.coroutines.android)
|
|
implementation(libs.fdroid.index)
|
|
implementation(libs.fdroid.download)
|
|
testImplementation(libs.junit4)
|
|
androidTestImplementation(libs.androidx.test.ext)
|
|
androidTestImplementation(libs.androidx.test.espresso.core)
|
|
}
|