game
adb 관련 명령어
junkhead
2015. 9. 13. 10:31
device detach 라고 뜰때
adb kill-server
adb start-server
** 스크린 캡쳐
adb shell
screencap -p /sdcard/Download/cap.png
adb 터치 좌표 get
adb shell
getevent -l
Touch
0003 0039 00000000 // ID 값
0003 0035 000002a3 // x point
0003 0036 000003aa // y point
0003 003a 0000001f // 압력
0001 014a 00000001 // 버튼 Down
0000 0000 00000000 // 이벤트 제출
Release
0003 0039 FFFFFFFFF // ID 값
0001 014a 00000000 // 버튼 UP
0000 0000 00000000 // 이벤트 제출
파일복사
adb shell
push macro.txt /sdcard/ (파일 복사)
** 반복 실행(마지막 숫자는 반복횟수)
adb shell
monkey -f /sdcard/download/macrohero.txt 10