xref: /aosp_15_r20/external/grpc-grpc-java/android-interop-testing/start-emulator.sh (revision e07d83d3ffcef9ecfc9f7f475418ec639ff0e5fe)
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