Skip to content

Commit 779b515

Browse files
Bump minimum SDK to 28
Such old devices aren't supported and tested anymore. Even though they might work, there is no guarantee for it and I don't have the resources nor am I willing to maintain those.
1 parent 60c8b22 commit 779b515

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

magiskmodule/customize.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
[ $API -lt 23 ] && abort "The system API of $API is less than the minimum api of 23!"
3+
[ $API -lt 28 ] && abort "Android SDK $API is not supported!"
44

55
VIPERFXPACKAGE="com.pittvandewitt.viperfx"
66
SDCARD="/storage/emulated/0"
@@ -36,7 +36,7 @@ if [ $DDC_FOLDER_EMPTY = true ] && [ $CUSTOM_VDC_FOUND = false ]; then
3636
mkdir -p "$FOLDER"/DDC 2>/dev/null
3737
tar -xzf "$MODPATH"/ViperVDC.tar.gz -C "$FOLDER"/DDC
3838
else
39-
ui_print " Skipping Viper original vdc copy"
39+
ui_print "- Skipping Viper original vdc copy"
4040
[ $DDC_FOLDER_EMPTY = false ] && ui_print " the folder is not empty"
4141
[ $CUSTOM_VDC_FOUND = true ] && ui_print " custom vdcs have been found"
4242
fi

0 commit comments

Comments
 (0)