You've already forked Zygisk-Assistant
mirror of
https://github.com/snake-4/Zygisk-Assistant.git
synced 2025-09-06 06:37:02 +00:00
21 lines
537 B
Plaintext
21 lines
537 B
Plaintext
import java.io.ByteArrayOutputStream
|
|
|
|
plugins {
|
|
alias(libs.plugins.agp.lib) apply false
|
|
}
|
|
|
|
val commitHash: String by extra({
|
|
val stdout = ByteArrayOutputStream()
|
|
rootProject.exec {
|
|
commandLine("git", "rev-parse", "--short", "HEAD")
|
|
standardOutput = stdout
|
|
}
|
|
stdout.toString().trim()
|
|
})
|
|
|
|
val moduleId by extra("zygisk-assistant")
|
|
val moduleName by extra("Zygisk Assistant")
|
|
val verName by extra("v2.0.1")
|
|
val verCode by extra(201)
|
|
val abiList by extra(listOf("armeabi-v7a","arm64-v8a","x86","x86_64"))
|