Home android How to connect ADB WIFI in Android Studio?

How to connect ADB WIFI in Android Studio?

Author

Date

Category

Downloaded the ADB WIFI plugin to run the application over WIFI. When you click on Tools, ADB to WIFI nothing happens. How to connect it?


Answer 1, authority 100%

If you do not use plugins that will work every other time, then you can do everything by hand. There are only a couple of actions and the plugin is not really needed here.

  1. Connect the device via USB
  2. Open a terminal in the folder with adb along the path PATH_TO_SDK / sdk / platform-tools
  3. Make sure that the device and the computer are in the same Wi-Fi network.
  4. Typing adb tcpip 5555
  5. Typing adb connect IP_DEVICE

Further, in 95% of cases it is enough to execute only step 5.


Answer 2, authority 16%

If you are talking about this plugin, then in order to connect the device via wi-fi, you need to connect at least once with a wire. It says here .


Answer 3, authority 16%

A bit wrong now. This guide should help.

4 steps:

  1. We connect the device via USB

    In terminal :

  2. cd C: \ Users \ mxsof \ AppData \ Local \ Android \ Sdk \ platform-tools
  3. adb tcpip 5555
  4. adb connect LOCAL_IP_DEVICE: 5555

Notes :

  • The device and computer must be on the same Wi-FI network.
  • How to find the path to platform tools : Settings & gt; drive "android sdk" into the search , copy the path , I have it C: \ Users \ mxsof \ AppData \ Local \ Android \ Sdk , add to the path \ platform-tools .
  • You can view your local ip-address in the settings in the about phone section, or using any online service.

Answer 4

Now (in October 2020), the easiest way to do it was through this plugin .

The only important thing is to check that the correct path to adb is specified.

Instructions for use:

  1. Connect your device using a USB cable.
  2. Open the ADB Wi-Fi toolbox (bottom right corner).
  3. Click the Connect button.
  4. After successful connection, you can disconnect the USB cable.

Programmers, Start Your Engines!

Why spend time searching for the correct question and then entering your answer when you can find it in a second? That's what CompuTicket is all about! Here you'll find thousands of questions and answers from hundreds of computer languages.

Recent questions