Created
November 4, 2025 17:53
-
-
Save ev-turenko/3cd3f66229df6ded08d9690ba30ec7d3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| Useful commands when working with Android emulators | |
| List available emulators | |
| ```~/Library/Android/sdk/emulator/emulator -list-avds``` | |
| Launch emulator with hardware acceleration. Replace EMULATORNAME by the name of the available emulator. | |
| ``` | |
| ~/Library/Android/sdk/emulator/emulator -avd EMULATORNAME -gpu host | |
| ``` | |
| Examples: | |
| IN | |
| ```~/Library/Android/sdk/emulator/emulator -list-avds``` | |
| OUT | |
| ```Pixel_3_API_30``` | |
| IN | |
| ```~/Library/Android/sdk/emulator/emulator -avd Pixel_3_API_30 -gpu host``` | |
| OUT | |
| ```[Launched emulator instance]``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment