Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Lecarvalho/6029eecaa631879c948dfb8d9326320c to your computer and use it in GitHub Desktop.

Select an option

Save Lecarvalho/6029eecaa631879c948dfb8d9326320c to your computer and use it in GitHub Desktop.
Create a new android emulator without android studio
  1. List all installed system-images:
sdkmanager --list_installed
  1. List all system-images and note the one you want to use:
sdkmanager --list | grep "system-images"
  1. Download the desired system-image. E.g.:
sdkmanager "system-images;android-24;google_apis;x86_64"
  1. Create the emulator. E.g.:
avdmanager create avd -n "android-24-custom" -k "system-images;android-24;google_apis;x86_64"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment