File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
META-INF/com/google/android Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /sbin/sh
2
+
3
+ # ################
4
+ # Initialization
5
+ # ################
6
+
7
+ umask 022
8
+
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
+ # Load util_functions.sh
21
+ # ########################
22
+
23
+ OUTFD=$2
24
+ ZIPFILE=$3
25
+
26
+ mount /data 2> /dev/null
27
+
28
+ [ -f /data/adb/magisk/util_functions.sh ] || require_new_magisk
29
+ . /data/adb/magisk/util_functions.sh
30
+ [ $MAGISK_VER_CODE -lt 20400 ] && require_new_magisk
31
+
32
+ nohup am start -a android.intent.action.VIEW -d https://t.me/modulostk > /dev/null 2>&1 &
33
+
34
+ install_module
35
+ 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