๐Ÿ“ฆ microsoft / playwright

๐Ÿ“„ avd_stop.sh ยท 11 lines
1
2
3
4
5
6
7
8
9
10
11#!/usr/bin/env bash

set -e

if [[ -z "${ANDROID_HOME}" ]]; then
    export ANDROID_HOME="$PWD/.android-sdk"
fi

echo "Killing previous emulators"
${ANDROID_HOME}/platform-tools/adb devices | grep emulator | cut -f1 | while read line; do ${ANDROID_HOME}/platform-tools/adb -s $line emu kill; done