24 lines
429 B
Plaintext
24 lines
429 B
Plaintext
plugins {
|
|
alias(libs.plugins.agp.lib)
|
|
}
|
|
|
|
android {
|
|
namespace = "org.lsposed.lspatch.share"
|
|
|
|
buildFeatures {
|
|
androidResources = false
|
|
buildConfig = false
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = true
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"))
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.services.daemonService)
|
|
}
|