#!/bin/bash
# this simple script will get the latest build url for the android platform
./android/gradlew assembleRelease -p ./android # build debug apk
find ./android -type f -name "app-release.apk" # find apk file
adb install "<path_to_apk_file>"