Last active
May 21, 2021 09:52
-
-
Save paulonteri/2b7fa4d74c27d4819569d393b506e766 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Originally written by Ralf Kistner <[email protected]>, but placed in the public domain | |
| set +e | |
| bootanim="" | |
| failcounter=0 | |
| timeout_in_sec=900 | |
| until [[ "$bootanim" =~ "stopped" ]]; do | |
| bootanim=`adb -e shell getprop init.svc.bootanim 2>&1 &` | |
| if [[ "$bootanim" =~ "device not found" || "$bootanim" =~ "device offline" | |
| || "$bootanim" =~ "running" ]]; then | |
| let "failcounter += 5" | |
| echo "Waiting for emulator to start" | |
| if [[ $failcounter -gt timeout_in_sec ]]; then | |
| echo "Timeout ($timeout_in_sec seconds) reached; failed to start emulator" | |
| exit 1 | |
| fi | |
| fi | |
| sleep 5 | |
| done | |
| echo "Emulator is ready" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment