반응형
쓸만한 ADB 명령어 정리
adb 연결 확인
adb devices
adb 시작 및 종료
adb start-server
adb kill-server
adb 재시작
adb reboot [recovery|bootloader]
안드로이드에서 파일 가져오기
adb pull "안드로이드 경로" "PC 경로"
안드로이드로 파일 보내기
adb push "PC 경로" "안드로이드 경로"
안드로이드 앱 설치
adb install [-r] test.apk
-r : 재설치
안드로이드 앱 삭제
adb uninstall test.apk
로그보기
adb logcat *:[V,D,I,W,E,F,S]
안드로이드 쉘 접속
adb shell [명령어 사용 가능]
ex) adb shell cat /proc/version
패키지 목록 확인
adb shell pm list packages -f
스크린샷 촬영
adb shell screencap /sdcard/test.ong
동영상 촬영
adb shell screenrecord /sdcard/test.mp4
커널 디버깅 메시지
adb dmesg
728x90