diff --git a/README.md b/README.md index fffac968..3ce03481 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,23 @@ Also works as standalone loader for Magisk on purpose of getting rid of LD_PRELO ## Requirements +### General + ++ No multiple root implementation installed + +### KernelSU + + Minimal KernelSU version: 10654 + Minimal ksud version: 10647 -+ Full SELinux patch support (If non-gki kernel) -+ No multiple root implementation installed ++ Kernel has full SELinux patch support ++ For old kernels, you may need to manually add the following code to `sepolicy.rule`: + `allow zygote appdomain_tmpfs file *` + `allow zygote appdomain_tmpfs dir *` + +### Magisk + ++ Minimal version: 25208 ++ Original Zygisk turned off ## Compatibility diff --git a/build.gradle.kts b/build.gradle.kts index 264e9b7b..3ba6ba13 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -31,7 +31,7 @@ val gitCommitHash = "git rev-parse --verify --short HEAD".execute() val moduleId by extra("zygisksu") val moduleName by extra("Zygisk on KernelSU") -val verName by extra("v4-0.5.1") +val verName by extra("v4-0.6.0") val verCode by extra(gitCommitCount) val minKsuVersion by extra(10654) val minKsudVersion by extra(10647)