-
-
Save patrick-elmquist/dc01f4417732004d104abcfa69d86f0f to your computer and use it in GitHub Desktop.
Revisions
-
itmammoth revised this gist
Jul 24, 2017 . No changes.There are no files selected for viewing
-
itmammoth revised this gist
Jul 24, 2017 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,8 +3,7 @@ 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 -
itmammoth created this gist
Jul 24, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ #!/bin/bash EMULATOR=~/Library/Android/sdk/tools/emulator if [ $# -ne 1 ]; then echo "ERROR: No AVD specified." 1>&2 echo "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"