mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
701e6968de
app-id is hardcoded for now.
9 lines
144 B
Bash
Executable file
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
|