Use adb wait-for-device

pull/120/head
Alex Baker 11 years ago
parent e99492fa4e
commit e4f5e62dde

@ -32,8 +32,7 @@ before_install:
#- emulator -avd test -no-skin -no-audio -no-window &
#before_script:
#- chmod +x .wait_for_emulator.sh
#- ./.wait_for_emulator.sh
#- adb wait-for-device
#- adb shell input keyevent 82 &
script:

@ -1,17 +0,0 @@
#!/bin/bash
bootanim=""
failcounter=0
until [[ "$bootanim" =~ "stopped" ]]; do
bootanim=`adb -e shell getprop init.svc.bootanim 2>&1`
echo "$bootanim"
if [[ "$bootanim" =~ "not found" ]]; then
let "failcounter += 1"
if [[ $failcounter -gt 3 ]]; then
echo "Failed to start emulator"
exit 1
fi
fi
sleep 1
done
echo "Done"
Loading…
Cancel
Save