Created
March 5, 2018 23:54
-
-
Save stevequinn/0959e026f22b6f795fa71b495926d6ec to your computer and use it in GitHub Desktop.
Launch Android Emulator
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
| #!/bin/sh | |
| # | |
| # Shortcut script to launch an Android Emulator. | |
| # Assumes osX and android SDK location has not been changed from default. | |
| # | |
| if [ $# -eq 0 ] | |
| then | |
| echo "Usage: androidEmulator.sh @emulatorName. Emulators available:" | |
| ~/Library/Android/sdk/tools/emulator -list-avds | |
| else | |
| ~/Library/Android/sdk/tools/emulator $1 | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment