[v1.0.11] Use new magisk module installer, fix bug in magisk 20.4 NOT auto run service.sh.

This commit is contained in:
Whale Choi
2020-03-26 05:23:33 +08:00
parent 3210c2d863
commit 3108beedc9
13 changed files with 425 additions and 348 deletions

10
service.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/system/bin/sh
MODDIR=${0%/*}
(
until [ $(getprop sys.boot_completed) -eq 1 ] ; do
sleep 5
done
${MODDIR}/scripts/start.sh
)&