Skip to content

Commit 2bc3953

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 <james.sutton@uk.ibm.com>
1 parent e44b44f commit 2bc3953

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

Lines changed: 6 additions & 0 deletions
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
Lines changed: 12 additions & 0 deletions
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)