Answers for "adb over the wifi"

1

adb connect over wifi

Device and PC are connected to same network connection.

1 stay connect via USB

2 adb kill-server

3 adb usb

4 adb tcpip 5555

5 adb connect 192.168.43.1:5555

6 adb devices (must be see two device names , one of them is by deviceIP)

7 unplug USB cable
Posted by: Guest on September-06-2021
0

connect adb over wifi

# sleep 5 is to wait for the device to restart listening.
adb kill-server && adb tcpip 5555 && sleep 5 && adb shell ip route | awk '{print $9}' | xargs adb connect
Posted by: Guest on April-09-2021

Browse Popular Code Answers by Language