From 742a94783fe69fc77816659bd5a2fde84b49aa26 Mon Sep 17 00:00:00 2001 From: Eric House Date: Tue, 3 Dec 2013 08:26:26 -0800 Subject: [PATCH] launch app after installing --- xwords4/android/scripts/install-all.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xwords4/android/scripts/install-all.sh b/xwords4/android/scripts/install-all.sh index ffb149ab3..45c03aeb9 100755 --- a/xwords4/android/scripts/install-all.sh +++ b/xwords4/android/scripts/install-all.sh @@ -47,6 +47,8 @@ COUNT=0 for DEVICE in $DEVICES; do echo $DEVICE adb -s $DEVICE install -r $APK + adb -s $DEVICE shell am start \ + -n org.eehouse.android.xw4/org.eehouse.android.xw4.GamesList COUNT=$((COUNT+1)) done