Getting messed up with usb cables on your desk or tired of buying new usb cables every week ??
Here is a new way for running your apps and debugging them without connecting them to your pc using usb cable.
Just a set of commands and you are good to go for the running and debugging your applications.
Connect the device via USB and make sure debugging is working.
adb tcpip 5555
adb connect <DEVICE_IP_ADDRESS>:5555
Disconnect USB and proceed with wireless debugging.
adb -s <DEVICE_IP_ADDRESS>:5555 usb to switch back when done.
Happy coding :)
0 Comment(s)