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
18 lines
446 B
Plaintext
18 lines
446 B
Plaintext
import java.io.ByteArrayOutputStream
|
|
|
|
plugins {
|
|
id("com.android.library") version "8.8.1" apply false
|
|
}
|
|
|
|
val commitHash: String by extra {
|
|
val result = providers.exec {
|
|
commandLine("git", "rev-parse", "--verify", "--short", "HEAD")
|
|
}
|
|
result.standardOutput.asText.get().trim()
|
|
}
|
|
|
|
val moduleId by extra("zygisk-assistant")
|
|
val moduleName by extra("Zygisk Assistant")
|
|
val verName by extra("v2.1.4")
|
|
val verCode by extra(214)
|