PlayIntegrityFix/module/customize.sh

10 lines
302 B
Bash
Raw Normal View History

2023-11-25 03:58:30 +08:00
# Error on < Android 8
if [ "$API" -lt 26 ]; then
abort "!!! You can't use this module on Android < 8.0."
fi
# safetynet-fix module is incompatible
if [ -d "/data/adb/modules/safetynet-fix" ]; then
touch "/data/adb/modules/safetynet-fix/remove"
2023-11-25 09:13:22 +08:00
ui_print "!!! safetynet-fix module removed!"
fi