From 2269f63ff3d124a2bf9906ab407b9e5e8b5c9f29 Mon Sep 17 00:00:00 2001 From: chiteroman Date: Sun, 9 Feb 2025 09:25:14 +0100 Subject: [PATCH] Add com.android.vending to DenyList changes Co-authored-by: Chris Renshaw --- module/post-fs-data.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/module/post-fs-data.sh b/module/post-fs-data.sh index eb84c4c..8162c80 100644 --- a/module/post-fs-data.sh +++ b/module/post-fs-data.sh @@ -1,14 +1,16 @@ MODPATH="${0%/*}" . "$MODPATH"/common_func.sh -# Remove Play Services from Magisk DenyList when set to Enforce in normal mode +# Remove Play Services and Play Store from Magisk DenyList when set to Enforce in normal mode if magisk --denylist status; then magisk --denylist rm com.google.android.gms + magisk --denylist rm com.android.vending else # Check if Shamiko is installed and whitelist feature isn't enabled if [ -d "/data/adb/modules/zygisk_shamiko" ] && [ ! -f "/data/adb/shamiko/whitelist" ]; then magisk --denylist add com.google.android.gms com.google.android.gms magisk --denylist add com.google.android.gms com.google.android.gms.unstable + magisk --denylist add com.android.vending fi fi