mirror of
https://github.com/material-components/material-components-android.git
synced 2026-01-09 07:11:07 +08:00
Resolves https://github.com/material-components/material-components-android/pull/338 GIT_ORIGIN_REV_ID=65991c1e6a9c7357e8ef6e9a9be8f87a7d5cf4df PiperOrigin-RevId: 247219512
22 lines
538 B
Plaintext
22 lines
538 B
Plaintext
set +e
|
|
|
|
bootanim=""
|
|
failcounter=0
|
|
timeout_in_sec=360
|
|
|
|
until [[ "$bootanim" =~ "stopped" ]]; do
|
|
bootanim=`adb -e shell getprop init.svc.bootanim 2>&1 &`
|
|
if [[ "$bootanim" =~ "device not found" || "$bootanim" =~ "device offline"
|
|
|| "$bootanim" =~ "running" ]]; then
|
|
let "failcounter += 1"
|
|
echo "Waiting for emulator to start"
|
|
if [[ $failcounter -gt timeout_in_sec ]]; then
|
|
echo "Timeout ($timeout_in_sec seconds) reached; failed to start emulator"
|
|
exit 1
|
|
fi
|
|
fi
|
|
sleep 1
|
|
done
|
|
|
|
echo "Emulator is ready"
|