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>
This commit is contained in:
James Sutton 2015-08-27 14:56:41 +01:00
parent d6de962d11
commit 52051b8978
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#Wed Aug 26 15:38:58 BST 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip

12
waitForEmulator.sh Normal file
View File

@ -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
break
fi
sleep 5
done
echo Finished: $str
echo Emulator has booted.