Breadcrumbs zygisk-module-template / settings.gradle.kts Latest commit 5ec1cff template 0447691· Dec 31, 2023 HistoryHistory File metadata and controls Code Blame 20 lines (18 loc) · 335 Bytes Raw pluginManagement { repositories { google() mavenCentral() gradlePluginPortal() } } dependency...
Before developing Zygisk modules, you should first check out the official documentation for [Magisk Modules](https://topjohnwu.github.io/Magisk/guides.html). Do not fork this repository for your new module; either manually clone this repository, or press the "Use this template" button in the...
("Zygisk Module Sample") val verName by extra("v1") val verCode by extra(gitCommitCount) val commitHash by extra(gitCommitHash) val abiList by extra(listOf("arm64-v8a", "armeabi-v7a", "x86", "x86_64")) val androidMinSdkVersion by extra(26) val androidTargetSdkVersion by extra...
META-INF .gitattributes README.md customize.sh module.prop riru.sh uninstall.sh verify.sh .gitattributes .gitignore LICENSE README.md build.gradle gradle.properties gradlew gradlew.bat module.gradle settings.gradleBreadcrumbs Zygisk-Il2CppDumper /template /magisk_module / module...
An Zygisk Module Template based on zygisk-module-sample. Both cmake and ndk-build are supported. Usage Edit your moduleId in build.gradle.kts (It's also your module's soname). Edit other module info in build.gradle.kts or module/template/module.prop. Write your code in module/src/main...
build.gradle.kts src/main/cpp CMakeLists.txt external CMakeLists.txt 2 changes: 0 additions & 2 deletions 2 build.gradle.kts Original file line numberDiff line numberDiff line change @@ -1,6 +1,4 @@ import com.android.build.gradle.AppExtension import com.android.build.gradle.BaseExte...
Zygisk Mod Menu Template Mod Menu template that injects at runtime for unity games. This will bypass most common checks as it doesn't modify the game's APK file. yeah now this is detected in most games, you might be lucky tho This repository also uses cURL and ImGui (duh)Remember to...
An Zygisk Module Template based on zygisk-module-sample. Both cmake and ndk-build are supported. Usage Edit your moduleId inbuild.gradle.kts(It's also your module's soname). Edit other module info in build.gradle.kts or module/template/module.prop. ...
165 changes: 4 additions & 161 deletions 165 module/template/META-INF/com/google/android/update-binary Original file line numberDiff line numberDiff line change @@ -11,7 +11,7 @@ ui_print() { echo "$1"; }require_new_magisk() {...
Zygisk Module Template An Zygisk Module Template based on zygisk-module-sample. Both cmake and ndk-build are supported. Usage Edit your moduleId in build.gradle.kts (It's also your module's soname). Edit other module info in build.gradle.kts or module/template/module.prop. Write your ...