29 lines
636 B
Kotlin
29 lines
636 B
Kotlin
plugins {
|
|
alias(libs.plugins.looker.android.library)
|
|
alias(libs.plugins.looker.hilt)
|
|
alias(libs.plugins.looker.lint)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.leos.network"
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = true
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"))
|
|
}
|
|
create("alpha") {
|
|
initWith(getByName("debug"))
|
|
isMinifyEnabled = true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
modules(Modules.coreCommon)
|
|
|
|
implementation(libs.kotlinx.coroutines.android)
|
|
implementation(libs.ktor.core)
|
|
implementation(libs.ktor.okhttp)
|
|
}
|