mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
9 lines
213 B
Bash
9 lines
213 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for DEVICE in $(adb devices | grep '^emulator' | sed 's/device//'); do
|
||
|
adb -s $DEVICE install -r ./bin/XWords4-debug.apk
|
||
|
COUNT=$((COUNT+1))
|
||
|
done
|
||
|
|
||
|
echo "installed into $COUNT emulator instances"
|