Guest User

Untitled

a guest
Aug 14th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #/bin/sh
  2. pkg=$1
  3.  
  4. function intr() {
  5. adb shell am start -a android.intent.action.MAIN -c android.intent.category.HOME
  6. exit 0
  7. }
  8.  
  9. trap intr SIGINT
  10. adb shell am instrument -w ${pkg}/android.test.InstrumentationTestRunner &
  11. adb logcat
Add Comment
Please, Sign In to add comment