Skip to content

Instantly share code, notes, and snippets.

@windoze
Created July 11, 2018 05:44
Show Gist options
  • Save windoze/b9259b6bd76018f8e7a7570a752159d6 to your computer and use it in GitHub Desktop.
Save windoze/b9259b6bd76018f8e7a7570a752159d6 to your computer and use it in GitHub Desktop.
Wait for emulator being fully started.
#!/bin/bash
# Originally written by Ralf Kistner <[email protected]>, but placed in the public domain
set +e
bootanim=""
failcounter=0
timeout_in_sec=360
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 += 1"
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 1
done
echo "Emulator is ready"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment