Created
June 8, 2017 00:10
-
-
Save ricklentz/8d13150fb8033f5de15c410e05b0e600 to your computer and use it in GitHub Desktop.
FIX trace issue analysis
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
| install wireshark and launch a capture session with the tcp filter enabled | |
| install ARC Welder, link to the .apk, and launch with metadata {"stderrLog": "V"} | |
| set up the app by inspecting chrome://inspect/#apps and then opening the plugin shell plugin.shell('adbd') via the javascript console | |
| launch adb using shell: .platform-tools/adb shell -e 0 | |
| pm list packages -f | |
Author
Author
function android_clear_input {
adb shell input keyevent KEYCODE_MOVE_END
for i in $(seq 50); do
adb shell input keyevent KEYCODE_DEL
done
}
Author
adb shell "input keyevent KEYCODE_S && input keyevent KEYCODE_P && input keyevent KEYCODE_Y && input keyevent KEYCODE_ENTER"
Author
adb shell /system/bin/input keyevent 23
Author
adb shell input keyevent KEYCODE_DPAD_DOWN
Author
adb shell input keyevent KEYCODE_TAB
Author
adb shell input keyevent KEYCODE_BACK
Author
screencapture -t png sample.png
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
./adb shell "input keyevent KEYCODE_A && input keyevent KEYCODE_A && input keyevent KEYCODE_P && input keyevent KEYCODE_L && input keyevent KEYCODE_ENTER"