31 lines
743 B
Plaintext
31 lines
743 B
Plaintext
|
plugins {
|
||
|
alias(libs.plugins.looker.android.library)
|
||
|
alias(libs.plugins.looker.hilt)
|
||
|
alias(libs.plugins.looker.lint)
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "com.leos.installer"
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
isMinifyEnabled = true
|
||
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"))
|
||
|
}
|
||
|
create("alpha") {
|
||
|
initWith(getByName("debug"))
|
||
|
isMinifyEnabled = true
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
modules(Modules.coreCommon, Modules.coreDatastore)
|
||
|
|
||
|
implementation(libs.kotlinx.coroutines.android)
|
||
|
implementation(libs.kotlinx.coroutines.guava)
|
||
|
implementation(libs.libsu.core)
|
||
|
implementation(libs.shizuku.api)
|
||
|
api(libs.shizuku.provider)
|
||
|
}
|