Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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.
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #kill #emulator
ADD COMMENT
Topic
Name
1+6 =