ADB 명령어

2019. 5. 28. 14:26개발/ADB

모바일 루트 권한 adb root

모바일 들어가기명령어
모바일 루트권한 adb root
모바일 들어가기 adb shell
메모리 free -h
cpu보기 uptime
애플리케이션의 processID취득 adb shell ps
종료예약(초)
shutdown -s -t 3600
취소하기
shutdown -a 

 

랜카드 정보 adb shell iw dev wlan0 info

 

apk 대량으로 설치하기

sd카드로 설치
adb -s 시리얼넘버 shell for apk in sd카드주소/apk/*.apk; do pm install -r $apk ; done

adb device로 시리얼넘버 추출
adb shell mount로 sd카드 주소 추출
adb -s 시리얼넘버 shell mount 특정기기 주소 추출
adb shell pm clear [packageName] 데이터클린

'개발 > ADB' 카테고리의 다른 글

ADB 세팅하기  (0) 2019.05.28