mirror of
https://github.com/chiteroman/PlayIntegrityFix.git
synced 2025-01-19 03:22:39 +02:00
9 lines
297 B
Bash
9 lines
297 B
Bash
# Remove Play Services from the Magisk Denylist when set to enforcing
|
|
if magisk --denylist status; then
|
|
magisk --denylist rm com.google.android.gms
|
|
fi
|
|
|
|
# Check if safetynet-fix is installed
|
|
if [ -d "/data/adb/modules/safetynet-fix" ]; then
|
|
touch "/data/adb/modules/safetynet-fix/remove"
|
|
fi |