Notice
Recent Posts
Recent Comments
Link
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

🌱 dreaming DiNO

[Android] adb 명령어 모음 본문

Android

[Android] adb 명령어 모음

MK_____ 2022. 1. 18. 13:22
adb 명령어 보기 adb help
기기(ip address) 연결 adb connect ip address:port number
연결 해제 adb disconnect
연결된 기기 보기 adb devices
연결된 기기의 package list 보기 adb shell pm list packages -f
apk 설치 adb install -r apk파일경로
  * -r : 설치할 apk가 존재할경우 덮어쓰기
adb install -r ./WatchFaceStudio/com.hae.~~~~.apk
  adb install app_name.apk
특정 device에 설치 adb -s 192.168.1.36 install -r ./WatchFaceStudio/~~~~.apk
apk 삭제 adb uninstall package name
logcat 버퍼 clear adb logcat -c
adb 종료 adb kill-server
종료된 adb 시작 adb start-server
Device 재시작 adb reboot

 

 

출처: https://ddangeun.tistory.com/56