Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # you android_home, something like '/home/user/Android/Sdk/'
  4. cd $ANDROID_HOME
  5. ./tools/emulator -list-avds | cat -n
  6. printf "Select AVD: "
  7. read index
  8. avd=$(./tools/emulator -list-avds | sed "${index}q;d")
  9. echo "Selected $avd"
  10. ./tools/emulator -netdelay none -netspeed full -avd $avd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement