From 8805c3736d0308813d617ceb778ce903cc8770b3 Mon Sep 17 00:00:00 2001 From: Chris Renshaw Date: Fri, 7 Feb 2025 00:19:10 -0400 Subject: [PATCH] Add com.android.vending to DenyList changes --- module/post-fs-data.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/module/post-fs-data.sh b/module/post-fs-data.sh index a557241..841d1a5 100644 --- a/module/post-fs-data.sh +++ b/module/post-fs-data.sh @@ -2,15 +2,17 @@ MODPATH="${0%/*}" . $MODPATH/common_func.sh if [ -d "$MODPATH/zygisk" ]; then - # 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 fi # Run common tasks for installation and boot-time . $MODPATH/common_setup.sh else - # Add Play Services DroidGuard process to Magisk DenyList for better results in scripts-only mode + # Add Play Services DroidGuard and Play Store processes to Magisk DenyList for better results in scripts-only mode magisk --denylist add com.google.android.gms com.google.android.gms.unstable + magisk --denylist add com.android.vending fi # Conditional early sensitive properties