Skip to content

Instantly share code, notes, and snippets.

@beevelop
Last active February 20, 2016 20:04
Show Gist options
  • Save beevelop/64ef6883d603a9a71ef1 to your computer and use it in GitHub Desktop.
Save beevelop/64ef6883d603a9a71ef1 to your computer and use it in GitHub Desktop.
Android SDK from Command line
# 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