Created
September 1, 2021 18:59
-
-
Save d4vidi/d21752f12a6e8c09bcb76ca157ee0f0c to your computer and use it in GitHub Desktop.
Android CI Blog: Emulator launch 3/3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Gracefully shut the emulator down | |
killall qemu-system-x86_64 | |
# (or, if running headless) | |
killall qemu-system-x86_64-headless | |
### Side-note: If you wish to brutally shut the emulator down without having | |
### anything saved - for whatever reason, you can kill using the SIGKILL signal: | |
killall -9 qemu-system-x86_64 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment