2011-12-15 03:17:37 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2012-01-21 17:50:12 +01:00
|
|
|
set -u -e
|
|
|
|
|
|
|
|
usage() {
|
|
|
|
[ $# -ge 1 ] && echo "Error: $1"
|
2012-07-01 21:53:36 +02:00
|
|
|
echo "usage: $(basename $0) [-e|-d] [-p /path/to/.apk]"
|
2012-01-21 17:50:12 +01:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2013-12-05 16:47:13 +01:00
|
|
|
if [ ! -e build.xml ]; then
|
|
|
|
usage "No build.xml; please run me from the top android directory"
|
|
|
|
fi
|
|
|
|
|
|
|
|
APK=./bin/XWords4-debug.apk
|
|
|
|
DIRNAME=$(basename $(pwd))
|
|
|
|
case $DIRNAME in
|
2014-02-12 07:11:28 +01:00
|
|
|
XWords4-dbg)
|
|
|
|
PKG=xw4dbg
|
|
|
|
;;
|
2013-12-05 16:47:13 +01:00
|
|
|
XWords4-bt)
|
|
|
|
PKG=xw4bt
|
|
|
|
;;
|
|
|
|
XWords4)
|
|
|
|
PKG=xw4
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
usage "running in unexpected directory $DIRNAME"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2013-11-10 18:01:52 +01:00
|
|
|
DEVICES=''
|
2012-01-21 17:50:12 +01:00
|
|
|
|
|
|
|
while [ $# -ge 1 ]; do
|
|
|
|
case $1 in
|
|
|
|
-e)
|
2013-11-10 18:01:52 +01:00
|
|
|
DEV="$(adb devices | grep '^emulator' | awk '{print $1}')"
|
|
|
|
DEVICES="$DEVICES $DEV"
|
2012-01-21 17:50:12 +01:00
|
|
|
;;
|
|
|
|
-d)
|
2013-11-10 18:01:52 +01:00
|
|
|
DEV="$(adb devices | grep -v emulator | grep 'device$' | awk '{print $1}')"
|
|
|
|
DEVICES="$DEVICES $DEV"
|
2012-01-21 17:50:12 +01:00
|
|
|
;;
|
2012-02-22 22:01:00 +01:00
|
|
|
-p)
|
|
|
|
[ $# -gt 1 ] || usage "-p requires an argument"
|
|
|
|
shift
|
|
|
|
APK=$1
|
|
|
|
;;
|
2012-01-21 17:50:12 +01:00
|
|
|
*)
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2012-03-06 16:36:07 +01:00
|
|
|
[ -e $APK ] || usage "$APK not found"
|
|
|
|
|
2012-01-21 17:50:12 +01:00
|
|
|
if [ -n "$DEVICES" ]; then
|
|
|
|
echo "installing this binary. Check the age..."
|
|
|
|
ls -l $APK
|
|
|
|
echo ""
|
|
|
|
fi
|
|
|
|
|
|
|
|
COUNT=0
|
|
|
|
|
|
|
|
for DEVICE in $DEVICES; do
|
|
|
|
echo $DEVICE
|
|
|
|
adb -s $DEVICE install -r $APK
|
2013-12-03 17:26:26 +01:00
|
|
|
adb -s $DEVICE shell am start \
|
2014-03-25 05:10:02 +01:00
|
|
|
-n org.eehouse.android.${PKG}/org.eehouse.android.${PKG}.GamesListActivity
|
2011-12-15 03:17:37 +01:00
|
|
|
COUNT=$((COUNT+1))
|
|
|
|
done
|
|
|
|
|
2012-01-21 17:50:12 +01:00
|
|
|
echo "installed into $COUNT devices/emulators"
|