forked from eclipse-paho/paho.mqtt.android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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]>
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |