[core] Require Magisk 23+ (#566)

This commit is contained in:
tehcneko 2021-05-12 13:56:02 +08:00 committed by GitHub
parent 4edf8e43eb
commit bcd5fd004f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -20,9 +20,9 @@
check_magisk_version() {
ui_print "- Magisk version: $MAGISK_VER_CODE"
if [ "$MAGISK_VER_CODE" -lt 21000 ]; then
if [ "$MAGISK_VER_CODE" -lt 23000 ]; then
ui_print "*********************************************************"
ui_print "! Please install Magisk v21+"
ui_print "! Please install Magisk v23+"
abort "*********************************************************"
fi
}