LoginSignup
1
0

More than 5 years have passed since last update.

emulatorをコマンドラインから起動する

Posted at

毎回android studio立ち上げるのが面倒だったので数行scriptを書く

#!/bin/bash

cd $ANDROID_HOME/tools

if [ $# -eq 0 ]; then
  AVD=$(emulator -list-avds | peco)
else 
  AVD=$1
fi

echo $AVD
emulator -avd $AVD

usage

$ avd-run
$ avd-run Nexus_5X_API_25
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0