We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6de962 commit 52051b8Copy full SHA for 52051b8
gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
1
+#Wed Aug 26 15:38:58 BST 2015
2
+distributionBase=GRADLE_USER_HOME
3
+distributionPath=wrapper/dists
4
+zipStoreBase=GRADLE_USER_HOME
5
+zipStorePath=wrapper/dists
6
+distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip
waitForEmulator.sh
@@ -0,0 +1,12 @@
+echo Android Home is: $ANDROID_HOME
+echo Waiting for Emulator to Boot.
+while true; do
+ str=`$ANDROID_HOME/platform-tools/adb shell getprop init.svc.bootanim 2>&1`
+ echo -n .
+ if [[ $str =~ 'stopped' ]]; then
7
+ break
8
+ fi
9
+ sleep 5
10
+done
11
+echo Finished: $str
12
+echo Emulator has booted.
0 commit comments