개발/ADB(2)
-
ADB 세팅하기
1. adb가 설치된 폴더 경로를 확인한다. 2. 시스템의 고급 시스템설정에서 환경변수로 들어간다. 3. 시스템 변수에서 Path를 더블클릭 4. 새로 만들기를 하여 1번에서 확인한 폴더 경로를 넣어준다. 5. 이제 cmd로 adb를 사용할 수 있다.
2019.05.28 -
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 she..
2019.05.28