Last active
February 20, 2016 20:04
-
-
Save beevelop/64ef6883d603a9a71ef1 to your computer and use it in GitHub Desktop.
Android SDK from Command line
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
# List all available SDKs, Targets, ABIs,etc | |
android list sdk -a -e | |
# Install one of those gorgeou packages | |
android update sdk -u -a -t sys-img-x86_64-android-23 | |
# List available AVD targets | |
android list targets | |
# Create AVD | |
android create avd -n john -b default/x86_64 -t 2 | |
# Run avd with emulator | |
emulator64-x86 -avd john -noskin -netfast -nojni -noaudio -no-boot-anim -no-window | |
# Wait and check | |
adb devices |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment