avd_name=my_avd
api_level=23
abi=x86_64
tag=google_apis
device="Nexus 5" # list of available devices see below
${ANDROID_HOME}/tools/bin/avdmanager --verbose create avd --name ${avd_name} \
This file contains 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 | |
# Requirements: | |
# jq - installation: brew install jq | |
CONFIG_FILE=~/.standup | |
NOCOLOR='\033[0m' | |
YELLOW='\033[1;33m' | |
LIGHT_CYAN='\033[1;36m' |