Debug Android Apps over WiFi

CYBRNODE
CYBR Notes
Published in
2 min readJul 10, 2020

Android App development can be really irritating when your phone keeps disconnecting because of cable issues etc. What if we told you there was a way to debug your apps on your phone over WiFi without rooting it. 🤯

Or you could just buy a new USB cable and problem solved. But who wants that? WiFi debugging mode is cool and who wants wires. irresistible.

How do we do this? It’s pretty simple:

Step 1:

Turn on USB debugging and check if your computer picks up your device.

Step 2:

Now connect your device to your computer (adjust the cable if necessary).

It will show up on your Android Studio as shown below:

Step 3:

Open a command prompt and type in the following:

adb tcpip 2020

A picture of a cat having flashbacks of war and terror while remembering the year 2020.
Thinking about 2020

Your device will now listen for connections on port 2020

Step 4:

Now we need the IP Address of your device. In the command prompt type the following:

adb shell netcfg

OR if that doesn’t work try:

adb shell ifconfig

Look up the IP Address of your device.

Step 5:

We can now disconnect the USB cable and Connect over WiFi. 🎉
Type the following in the command prompt to do this:

adb connect [replace with your device IP]:2020

If you have successfully followed everything you should see this in the command prompt.

Disconnecting and Reverting back to USB mode:

To disconnect type the following in the command prompt

adb disconnect

To Revert back to USB debug type the following in the command prompt

adb usb

Congratulations! you can now use debugging on your device over WiFi.

CAUTION!

Please be careful while using this mode. Only do this over a trusted WiFi network. Someone might connect to your device if you are not careful. Remember to disconnect and revert back to USB debug when done.

--

--