Skip to content

Instantly share code, notes, and snippets.

@hkurosawa
Created August 18, 2012 02:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hkurosawa/3383994 to your computer and use it in GitHub Desktop.
Save hkurosawa/3383994 to your computer and use it in GitHub Desktop.
automator script to install apk
ADB_PATH=PATH_TO_ADB
for f in "$@"
do
$ADB_PATH install -r "$f"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment