Skip to content

Instantly share code, notes, and snippets.

@groupsky
Last active December 10, 2015 22:18
Show Gist options
  • Save groupsky/4501206 to your computer and use it in GitHub Desktop.
Save groupsky/4501206 to your computer and use it in GitHub Desktop.
deploy release apps to all connected devices
for APK in `find $WORKSPACE -type f -name '*-release*.apk'`; do
for DEVICE in `adb devices | tail -n+2 | cut -f1`; do
echo "installing $APK on $i"
adb -s $DEVICE install -rs $APK
done
done
echo "done deploying"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment