Unable to pair device for debugging over Wi-Fi, Android Studio (Bumblebee)

Viewed 1931

I want to debug my Flutter app via wireless debugging on Android Studio Bumblebee. When I go to the "Pair devices over WiFi" section. It shows me this -


My platform tools are up to date (32.0.0). And yet it's showing this. SDK Platform Tools ScreenShot
I'm more confused to why it's not working because, it did work a few hours earlier, but does not anymore. Any help is appreciated.


EDIT : It started working again. I don't know how, I have not changed a thing, yet it is.

2 Answers

Try the manual way and see whether it'll work.

  1. Plug in your phone to the computer and wait for it to register as a connected device

  2. Open your terminal in cmd and use the following commands

    adb tcpip 5555 adb connect (your device IP like) 192.168.16.0:5555 Your ip is found in setting>about phone>status If your environment is set up correctly, you can now unplug and resume wireless debugging

Related