Last active
September 13, 2017 14:54
-
-
Save k3muri84/5ffe131c4382be6c27c082c99ab5f7ab to your computer and use it in GitHub Desktop.
ADB Install & Run on multiple devices
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb devices | tail -n +2 | cut -sf 1 | xargs -I {} adb -s {} install -r yourBuild.apk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb devices | tail -n +2 | cut -sf 1 | xargs -I {} adb -s {} shell monkey -p com.yourcompany.product -c android.intent.category.LAUNCHER 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment