mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
launch app after installing
This commit is contained in:
parent
048ae63802
commit
ed9b9646e7
1 changed files with 17 additions and 0 deletions
|
@ -30,4 +30,21 @@ while [ ! -e $MANIFEST ]; do
|
|||
cd ..
|
||||
done
|
||||
|
||||
DIRNAME=$(basename $(pwd))
|
||||
case $DIRNAME in
|
||||
XWords4-bt)
|
||||
PKG=xw4bt
|
||||
;;
|
||||
XWords4)
|
||||
PKG=xw4
|
||||
;;
|
||||
*)
|
||||
usage "running in unexpected directory $DIRNAME"
|
||||
;;
|
||||
esac
|
||||
|
||||
ant $CMDS
|
||||
|
||||
if [ "$CMDS" != "${CMDS%%install}" ]; then
|
||||
adb shell am start -n org.eehouse.android.${PKG}/org.eehouse.android.${PKG}.GamesList
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue