13 lines
239 B
Markdown
13 lines
239 B
Markdown
|
|
# Remote debug android phone
|
||
|
|
### Set the target device to listen for a TCP/IP connection on port 5555
|
||
|
|
```
|
||
|
|
$adb -s device_id tcpip 5555
|
||
|
|
```
|
||
|
|
|
||
|
|
|
||
|
|
### Connect to the device by its IP address
|
||
|
|
```
|
||
|
|
$adb connect device_ip_address
|
||
|
|
$adb devices
|
||
|
|
```
|