Loading repository data…
Loading repository data…
K3V1991 / repository
The standard ADB Configuration involves a USB Connection to a physical Device. If you prefer, you can switch over to TCP/IP Mode and connect ADB via WiFi instead
The standard ADB Configuration involves a USB Connection to a physical Device. If you prefer, you can switch over to TCP/IP Mode and connect ADB via WiFi instead.
Note: Make sure your Device and your Computer are on the same Network
adb tcpip <port>
Switches to TCP/IP Mode
<ip address>:<port>adb tcpip 5555
adb connect 192.168.0.101:5555
adb usb
Note: When you have a rooted Device but don't have Access to a USB Cable
Open a Terminal App on the Device and type:
su
setprop service.adb.tcp.port <tcp port number>
start adbd
setprop service.adb.tcp.port 5555
In a Command Line on the Computer, type:
adb connect 192.168.1.2:5555
setprop service.adb.tcp.port -1
stop adbd