Created
August 22, 2017 18:35
-
-
Save vtsatskin/dd2e3ca81125b6f3e061176744bd2f7f to your computer and use it in GitHub Desktop.
Running Android emulator through the command line on OSX
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
# Add this to your shell profile | |
export ANDROID_HOME=$HOME/Library/Android/sdk/ | |
alias emulator='cd $ANDROID_HOME/tools/; ./emulator' | |
# In a new shell | |
emulator @<avd_name> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment