Skip to content

Commit

Permalink
Bug: 474722 - Adding missing gradle jar and build shell script.
Browse files Browse the repository at this point in the history
These files are required for the Hudson CI Builds of the Android Service

Signed-off-by: James Sutton <james.sutton@uk.ibm.com>
  • Loading branch information
jpwsutton committed Aug 27, 2015
1 parent e44b44f commit 2bc3953
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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 changes: 12 additions & 0 deletions org.eclipse.paho.android.service/waitForEmulator.sh
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit 2bc3953

Please sign in to comment.