Add com.android.vending to DenyList changes

This commit is contained in:
Chris Renshaw
2025-02-07 00:19:10 -04:00
parent a52cc16b43
commit 8805c3736d

View File

@@ -2,15 +2,17 @@ MODPATH="${0%/*}"
. $MODPATH/common_func.sh . $MODPATH/common_func.sh
if [ -d "$MODPATH/zygisk" ]; then 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 if magisk --denylist status; then
magisk --denylist rm com.google.android.gms magisk --denylist rm com.google.android.gms
magisk --denylist rm com.android.vending
fi fi
# Run common tasks for installation and boot-time # Run common tasks for installation and boot-time
. $MODPATH/common_setup.sh . $MODPATH/common_setup.sh
else 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.google.android.gms com.google.android.gms.unstable
magisk --denylist add com.android.vending
fi fi
# Conditional early sensitive properties # Conditional early sensitive properties