xwords/xwords4/android/scripts/adb-pull-apk.sh
Eric House 701e6968de file to pull an apk
app-id is hardcoded for now.
2017-12-10 11:56:52 -08:00

9 lines
144 B
Bash
Executable file

#!/bin/bash
set -e -u
APP_ID=org.eehouse.android.xw4
APK_PATH=$(adb shell pm path $APP_ID)
APK_PATH=${APK_PATH/package:/}
adb pull $APK_PATH