mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
file to pull an apk
app-id is hardcoded for now.
This commit is contained in:
parent
afda9ce446
commit
701e6968de
1 changed files with 9 additions and 0 deletions
9
xwords4/android/scripts/adb-pull-apk.sh
Executable file
9
xwords4/android/scripts/adb-pull-apk.sh
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/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
|
Loading…
Reference in a new issue