Skip to content

Commit

Permalink
Merge pull request #454 from IcyColdified/main
Browse files Browse the repository at this point in the history
Check if Shamiko whitelist is not active before configuring DenyList
chiteroman authored Oct 24, 2024
2 parents fb36aab + 2ec63b6 commit 57323e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion module/post-fs-data.sh
Original file line number Diff line number Diff line change
@@ -6,7 +6,9 @@ if magisk --denylist status; then
magisk --denylist rm com.google.android.gms
else
# If DenyList is disabled, maybe you are using Shamiko
magisk --denylist add com.google.android.gms com.google.android.gms.unstable
if [ ! -f "/data/adb/shamiko/whitelist" ]; then
magisk --denylist add com.google.android.gms com.google.android.gms.unstable
fi
fi

# Uninstall conflict apps

0 comments on commit 57323e0

Please sign in to comment.