mirror of
https://github.com/eclipse/paho.mqtt.android.git
synced 2025-05-09 02:41:15 +08:00

These files are required for the Hudson CI Builds of the Android Service Signed-off-by: James Sutton <james.sutton@uk.ibm.com>
13 lines
287 B
Bash
13 lines
287 B
Bash
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.
|