Thursday, 20 November 2014

How to run the android app with out usb cable ?

See here: http://forum.xda-developers.com/showpost.php?p=7594419&postcount=9
  1. Connect device via USB and make sure debugging is working.
  2. adb tcpip 5555
  3. adb connect <DEVICE_IP_ADDRESS>:5555
  4. Disconnect USB and proceed with wireless debugging.
  5. adb -s <DEVICE_IP_ADDRESS>:5555 usb to switch back when done.
No root required!
To find the IP address of the device: run ./adb shell and then netcfg. You'll see it there.

No comments:

Post a Comment