How to connect android debugging wireless without data cable

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.

  1. First you need to connect your devices via USB cable and make sure the debugging is enabled. In your command prompt, run
    adb devices

  2. Run adb tcpip 5555
  3. Now you can disconnect your device from USB cable.
  4. 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.
  5. Run adb connect <your device IP>:5555

    . Now if you run adb device it should show your device.

  6. 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

Leave a Reply

Your email address will not be published. Required fields are marked *