mirror of
https://github.com/eclipse/paho.mqtt.android.git
synced 2025-05-08 10:13:52 +08:00
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:
parent
d6de962d11
commit
52051b8978
6
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
6
gradle/wrapper/gradle-wrapper.properties
vendored
Normal 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
12
waitForEmulator.sh
Normal 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.
|
Loading…
x
Reference in New Issue
Block a user