Skip to content

Instantly share code, notes, and snippets.

View blcooley's full-sized avatar

Brian Cooley blcooley

  • Cooley Mobile Development
View GitHub Profile
@chiuki
chiuki / uninstall_instrumentation_tests.sh
Created November 29, 2017 16:51
Script to remove instrumentation tests
#!/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