Question:
The question is rather strange:
I'm using ubuntu 14.04 and want to debug on my smartphone. But not via a usb cable, but via WiFi .
Is it possible to do this?
If so, how?
Answer:
Maybe. The official docks have information.
- Connect your device and computer to the same network.
- Connect via USB.
-
Set up a listener on TCP / IP and port 5555.
$ adb tcpip 5555
-
Disconnect USB.
-
Find the IP address of the device. For example, on the Nexuses, you can find the IP in Settings> About tablet (or About phone)> Status> IP address.
-
Join this device
adb connect <device-ip-address>
. -
Please confirm:
$ adb devices List of devices attached <device-ip-address>:5555 device
That's all.