Created
November 29, 2017 16:51
-
-
Save chiuki/f2f532dccdf3d856da39ff750c5a2c5f to your computer and use it in GitHub Desktop.
Script to remove instrumentation tests
This file contains hidden or 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
#!/bin/bash | |
for p in `adb shell pm list instrumentation | cut -f2 -d: | cut -f1 -d/`; do | |
echo -n "Uninstalling $p... " | |
adb uninstall $p | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment