From 892a62afdf0b3524221f4aefc39c0f840fb240d5 Mon Sep 17 00:00:00 2001 From: Rifat Azad Date: Sat, 19 Jul 2025 23:33:43 +0600 Subject: [PATCH] manager: bump MINIMAL_SUPPORTED_KERNEL to 12797 --- manager/app/src/main/java/com/rifsxd/ksunext/Natives.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/manager/app/src/main/java/com/rifsxd/ksunext/Natives.kt b/manager/app/src/main/java/com/rifsxd/ksunext/Natives.kt index 5b6fbd18..99fc4ddd 100644 --- a/manager/app/src/main/java/com/rifsxd/ksunext/Natives.kt +++ b/manager/app/src/main/java/com/rifsxd/ksunext/Natives.kt @@ -16,11 +16,12 @@ object Natives { // 10946: add capabilities // 10977: change groups_count and groups to avoid overflow write // 11071: Fix the issue of failing to set a custom SELinux type. - const val MINIMAL_SUPPORTED_KERNEL = 11071 + // 12797: zygisk query and get manager uid. + const val MINIMAL_SUPPORTED_KERNEL = 12797 // 11640: Support query working mode, LKM or GKI // when MINIMAL_SUPPORTED_KERNEL > 11640, we can remove this constant. - const val MINIMAL_SUPPORTED_KERNEL_LKM = 11648 + const val MINIMAL_SUPPORTED_KERNEL_LKM = 12797 // 12404: Support disable sucompat mode const val MINIMAL_SUPPORTED_SU_COMPAT = 12404