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 characters
#!/bin/bash | |
EMULATOR_PORT="8000" | |
EMULATOR_NAME="emulator-"${EMULATOR_PORT} | |
EMULATOR_TARGET='android-25' | |
EMULATOR_ABI='google_apis/x86_64' | |
check_avd(){ | |
echo "Checking if exists ${EMULATOR_NAME} ..." |
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 characters
#!/bin/bash | |
##### | |
# | |
# This script creates android emulators on the fly. | |
# | |
# Please refer to the README for usage instructions. | |
# | |
#### |