android studio 무선으로 연결하기(wifi 디버깅)
2019. 2. 8. 10:20ㆍCoding/Android Studio
728x90
준비물 : 안드로이드폰, PC, USB케이블, 와이파이환경
0. adb 환경변수 등록
필수는 아닌데, 등록하면 편함.
1. 폰과 pc를 usb로 연결
2. cmd or terminal 실행
3. > adb tcpip 5555
성공시 : restarting in TCP mode port: 5555
4. usb케이블 분리
5. > adb connect 192.168.0.10:5555
adb connect 본인IP:3번의Port 입력
성공시 : connected to <IP>:5555
Error 뜰경우...
more than one device/emulator
> adb devices
디바이스 목록확인, 다른 디바이스가 등록되어 있을것임.
> adb kill-server
> adb start-server
그냥 adb 껏다가 다시 키면됨.
5번에서 연결 오류 뜨는 경우
폰과 pc가 같은 wifi환경인지 확인.
728x90
'Coding > Android Studio' 카테고리의 다른 글
RecyclerView Empty Space 빈공간이 생길때 (0) | 2019.03.25 |
---|---|
[Error]Dialog에서 Unable to add window -- token null is not for an application 뜰때 (0) | 2019.03.19 |
RecyclerView 기본 사용법 정리본 (0) | 2019.01.28 |
Adapter에서 Activity finish()하기 (1) | 2019.01.24 |
Android Activity Stack 확인하기 (0) | 2019.01.21 |