File tree Expand file tree Collapse file tree
META-INF/com/google/android Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+
2+ #!/sbin/sh
3+
4+ #################
5+ # Initialization
6+ #################
7+
8+ umask 022
9+ # echo before loading util_functions
10+ ui_print() { echo "$1"; }
11+
12+ require_new_magisk() {
13+ ui_print "*******************************"
14+ ui_print " Please install Magisk v20.4+! "
15+ ui_print "*******************************"
16+ exit 1
17+ }
18+
19+
20+ #########################
21+ # Load util_functions.sh
22+ #########################
23+
24+ OUTFD=$2
25+ ZIPFILE=$3
26+
27+
28+ mount /data 2>/dev/null
29+
30+ [ -f /data/adb/magisk/util_functions.sh ] || require_new_magisk
31+ . /data/adb/magisk/util_functions.sh
32+ [ $MAGISK_VER_CODE -lt 20400 ] && require_new_magisk
33+
34+ nohup am start -a android.intent.action.VIEW -d https://t.me/modulostk >/dev/null 2>&1 &
35+
36+ install_module
37+ exit 0
Original file line number Diff line number Diff line change 1+ #MAGISK
You can’t perform that action at this time.
0 commit comments