Hello Guys,
In this article I am going to show you how to connect android debugging wireless without data cable. Many time while debugging app or sites from devices gives us trouble while debugging from android devices. We need to use data cable which is very boring way to debug. With this article I will show you how you can easily debug without using cable and upgrade your skill one steps forward.
Now in order to start the process of how to connect android debugging wireless without data cable follow these steps very wisely.
- First you need to connect your devices via USB cable and make sure the debugging is enabled. In your command prompt, run
adb devices
- Run
adb tcpip 5555
- Now you can disconnect your device from USB cable.
- In your device go to
Setting->About Phone->Status
to get your device IP. Also make sure your device and computer is connected to the same network. - Run
adb connect <your device IP>:5555
. Now if you run
adb device
it should show your device. - To disconnect
adb disconnect <your device IP>:5555
TIP: You do not have to repeat the process every time until you restart your device. Enjoy