Skip to content

Instantly share code, notes, and snippets.

@patrick-elmquist
Forked from itmammoth/start_emulator.sh
Created March 4, 2019 06:42
Show Gist options
  • Save patrick-elmquist/dc01f4417732004d104abcfa69d86f0f to your computer and use it in GitHub Desktop.
Save patrick-elmquist/dc01f4417732004d104abcfa69d86f0f to your computer and use it in GitHub Desktop.
Start an android emulator with changing DNS server to Google public DNS
#!/bin/bash
EMULATOR=~/Library/Android/sdk/tools/emulator
if [ $# -ne 1 ]; then
echo "ERROR: Please specify the target AVD from the list below" 1>&2
$EMULATOR -list-avds 1>&2
exit 1
fi
$EMULATOR -avd $1 -dns-server "8.8.8.8,8.8.4.4"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment