12 lines
257 B
Bash
Executable file
12 lines
257 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
$ANDROID_HOME/platform-tools/adb devices
|
|
|
|
echo "Waiting to give phone a chance to connect"
|
|
sleep 5
|
|
echo
|
|
|
|
$ANDROID_HOME/platform-tools/adb devices
|
|
|
|
$ANDROID_HOME/platform-tools/adb install -r target/release/gdn-app.apk
|