2

While searching for

debug Android applications over Wi-Fi

I came across the plugin - 'Android WiFi ADB' available in Android studio.

When I tried to install the plugin, Android Studio suggested 'WiFi ADB Ultimate'.

Or is it better to connect with terminal? If Yes, how?

Kindly help.

Prabs
  • 4,923
  • 6
  • 38
  • 59

5 Answers5

9

I felt connecting your device with terminal using adb commands is more helpful than these plugins.

Steps:

  1. You need to connect your device to your computer via USB cable. Make sure USB debugging is working. You can check if it shows up when running adb devices

enter image description here

  1. Run adb tcpip 5555

enter image description here

  1. Disconnect your device (remove the USB cable).

  2. Go to the Settings -> About phone -> Status to view the IP address of your phone.

  3. Run adb connect < IP address of your device > :5555

enter image description here

  1. If you run adb devices again, you should see your device.

enter image description here

Now you can execute adb commands or use your favorite IDE for android development - wireless!

Credits / Reference: https://futurestud.io/tutorials/how-to-debug-your-android-app-over-wifi-without-root

Prabs
  • 4,923
  • 6
  • 38
  • 59
1

Try WIFI ADB ULTIMATE.

It worked the first time for me.

Instructions:

  1. Find and install the plugin in Android Studio settings
  2. Restart Android Studio
  3. Plug in your phone using a USB cable
  4. Select View->Tools Window->WIFI ADB ULTIMATE
  5. You should now see your device listed (press the refresh icon, if needed).

Once the remote device is listed you can unplug your USB cable.

DaveyDaveDave
  • 9,821
  • 11
  • 64
  • 77
Mike
  • 11
  • 1
1

WIFI ADB ULTIMATE worked for me.

add the plugin.

  • The plugin gets added to the left side of android studio.
  • Click the plugin
  • Refresh the device list
  • It will show the USB connected android devices
  • Make sure that the device, you want to connect with the system containing android studio over WIFI share the same WIFI network.
  • Now click the play button.
  • If every thing were in write place , you android device would have been connected with system adb over WIFI.
  • Now you may disconnect the android device from the USB cable.
0

Try ADB WIFI connect it is best

raj kavadia
  • 926
  • 1
  • 10
  • 30
0

Wifi Adb Ultimate is cool but you have to be careful about 1 thing. After disconnecting wifi you have 24 hours to connect again through same wifi otherwise it will reset, not the IP but the connection.

raj kavadia
  • 926
  • 1
  • 10
  • 30