Skip to content

Instantly share code, notes, and snippets.

@bundarachada
bundarachada / script_android_jenkins
Created March 28, 2017 16:45
Script to up emulator android
#!/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} ..."
@bundarachada
bundarachada / android_emu_start.sh
Created October 15, 2016 18:59 — forked from stackedsax/android_emu_start.sh
Script for starting up multiple android emulators per box
#!/bin/bash
#####
#
# This script creates android emulators on the fly.
#
# Please refer to the README for usage instructions.
#
####