Skip to content

Instantly share code, notes, and snippets.

View psantos9's full-sized avatar

Paulo dos Santos psantos9

View GitHub Profile
@psantos9
psantos9 / emulator-install-using-avdmanager.md
Created June 5, 2020 10:36 — forked from mrk-han/emulator-install-using-avdmanager.md
Installing and creating Emulators with AVDMANAGER (For Continuous Integration Server or Local Use)

Install and Create Emulators using AVDMANAGER and SDKMANAGER

TL;DR

For generic skin emulator with default apis (without google apis):

  1. List All System Images Available for Download: sdkmanager --list | grep system-images

  2. Download Image: sdkmanager --install "system-images;android-29;default;x86"

@psantos9
psantos9 / gh-deploy-clone.sh
Created June 2, 2020 23:19 — forked from blvz/gh-deploy-clone.sh
Creates a deploy key and clones the repository.
#!/usr/bin/env bash
read -r -d '' usage << EOM
Usage:
gh-deploy-clone user/repo [ENVIRONMENT]
EOM
[ -z "$1" ] && echo && echo "$usage" && echo && exit 1