From e490f9e12803acaf6aeedfca54e2d9f4e101d6df Mon Sep 17 00:00:00 2001 From: Hannes Achleitner Date: Sun, 16 Feb 2020 09:03:06 +0100 Subject: [PATCH] cleanup from relicts --- .classpath | 9 --------- wait_for_emulator.sh | 19 ------------------- 2 files changed, 28 deletions(-) delete mode 100644 .classpath delete mode 100644 wait_for_emulator.sh diff --git a/.classpath b/.classpath deleted file mode 100644 index 72895a2990d..00000000000 --- a/.classpath +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/wait_for_emulator.sh b/wait_for_emulator.sh deleted file mode 100644 index 7f6443c7944..00000000000 --- a/wait_for_emulator.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -bootanim="" -failcounter=0 -checkcounter=0 -until [[ "$bootanim" =~ "stopped" ]]; do - bootanim=`adb -e shell getprop init.svc.bootanim 2>&1` - echo "($checkcounter) $bootanim" - if [[ "$bootanim" =~ "not found" ]]; then - let "failcounter += 1" - if [[ $failcounter -gt 30 ]]; then - echo "Failed to start emulator" - exit 1 - fi - fi - let "checkcounter += 1" - sleep 10 -done -echo "Done"