blob: e596d1846f8a90269045f7f2d00f27fe3fc50dc6 [file] [log] [blame]
Xudong Maf88779e2015-06-10 17:36:55 -07001#!/bin/bash
2
3# The only argument is the AVD name.
4# Note: This script will hang, you may want to run it in the background.
5
6if [ $# -eq 0 ]
7then
8 echo "Please specify the AVD name"
9 exit 1
10fi
11
12echo "[INFO] Starting emulator $1"
13emulator64-arm -avd $1 -netfast -no-skin -no-audio -no-window -port 5554