Skip to content

Commit 52051b8

Browse files
committed
Bug: 474722 - Adding missing gradle jar and build shell script.
These files are required for the Hudson CI Builds of the Android Service Signed-off-by: James Sutton <[email protected]>
1 parent d6de962 commit 52051b8

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
+6
Original file line numberDiff line numberDiff line change
@@ -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

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
echo Android Home is: $ANDROID_HOME
2+
echo Waiting for Emulator to Boot.
3+
while true; do
4+
str=`$ANDROID_HOME/platform-tools/adb shell getprop init.svc.bootanim 2>&1`
5+
echo -n .
6+
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

Comments
 (0)