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
+ Added more architectures to compile. - Removed all scripts from the module, now it is compatible with all root implementations. - Removed unused code and variables. - Removed most references to the module name. * Compilation is now parallelized.
12 lines
298 B
Plaintext
12 lines
298 B
Plaintext
import java.io.ByteArrayOutputStream
|
|
|
|
plugins {
|
|
alias(libs.plugins.agp.lib) apply false
|
|
}
|
|
|
|
val moduleId by extra("qingyue")
|
|
val moduleName by extra("Zygisk Qingyue")
|
|
val verName by extra("v1.0.0")
|
|
val verCode by extra(100)
|
|
val abiList by extra(listOf("armeabi-v7a","arm64-v8a","x86","x86_64"))
|