Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- convert
- 컴파일
- bigquery
- vuepress
- 다윈
- null safety
- hardwareacceleration
- Glide
- Realm
- web3js
- kotlin
- Android
- log
- error
- coroutines
- fabric-sdk-java
- Exception
- porterduff
- quick-start
- C
- LAYER_TYPE_SOFTWARE
- fabic
- dataginding
- test
- Hyperledger
- firebase
- 스트리밍
- 안드로이드
- ethereum
- Gradle
Archives
- Today
- Total
날마다 새롭게 또 날마다 새롭게
Android Debug Bridge (adb) 명령어 정리 본문
■ adb devices
adb server에 연결된 emulator / devices 를 보여줌. 명령어 입력 결과는 다음과 같은 형태로 출력된다..
[serial number] [state]
List of devices attached
015E00029FFC00000A3BA0CD08033024 device
emulator-5554 device
※ state
offline : 연결되어 있지 않음
device : 현재 연결된 상태
no device : 장비가 없음
※ 장비 : emulator / device
■ adb -s <serial number> <command>
현재 돌리고 있는 장비가 여러개 일 때 특정 장비를 선택하여 명령을 내릴 수 있다.
■ adb install <path_to_apk>
app을 장비에 인스톨함.
■ adb forward
장비의 port를 forwarding 할 수 있다.
adb forward tcp:6100 tcp:7100 : port 6100에서 7100으로 forwarding
■ adb pull / adb push
장비에서 파일을 카피할 수 있다.
adb pull <local> <remote>
adb push <remote> <local>
adb push foo.txt /sdcard/foo.txt : foo.txt 를 장비의 sdcard 폴더에 복사함.
출처 : ADB(Android Debug Bridge) 명령어 정리
Comments