Answers for "how to kill all emulator"

0

how to kill all emulator

adb devices | grep emulator | cut -f1 | while read line; do adb -s $line emu kill; done
adb -s emulator-5554 emu kill, where emulator-5554 is the emulator name.
Posted by: Guest on July-26-2021
0

how to kill all emulator

adb devices | grep emulator | cut -f1 | while read line; do adb -s $line emu kill; done
Posted by: Guest on July-26-2021

Browse Popular Code Answers by Language