1#!/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 14