Enable Zygisk by default in emulators

Make sure CI tests Zygisk
This commit is contained in:
topjohnwu
2023-09-28 15:37:11 -07:00
parent 6e7a995716
commit 5c92d39498
5 changed files with 26 additions and 5 deletions

View File

@ -35,7 +35,7 @@ cleanup() {
wait_for_boot() {
adb wait-for-device
while true; do
if [ "stopped" = "$(adb exec-out getprop init.svc.bootanim)" ]; then
if [ "1" = "$(adb exec-out getprop sys.boot_completed)" ]; then
break
fi
sleep 2