Reputation: 3120
I have recently updated to Android Bumblebee. And I am trying to connect my device wireless through wifi . But I get always get the message as seen in screenshot below .
I have updated to latest platform tools SDK 32 , but still the issue persists . Any help would be appreciated.
Upvotes: 13
Views: 5361
Reputation: 1
Both the methods above:
Also, I found out by enabling adb from firewall both on public and private network (depends on your network type) worked well for me. I am able to connect device using both QR code and pairing code methods.
Upvotes: 0
Reputation: 195
For any future readers:
I ran into this problem as well, and it turns out my computer was missing the Bonjour Service that Windows uses to handle mDNS. I simply installed it from Apple's site here and Wi-Fi pairing started working.
Upvotes: 0
Reputation: 367
This may sometimes happen due to adb problems.
C:\Users\[User]\AppData\Local\Android\Sdk\platform-tools
ipaddress:port
adb connect ipadrress:port
And there you go. :)
Upvotes: 2
Reputation: 94
may install fail. you should download it by yourself. platform-tools
then Connect to your device using Wi-Fi. May could not find devices
you should update PATH if you are WIN
Upvotes: 1
Reputation: 1698
I tried all suggested steps, which were well explained but unfortunately didn't solve the problem for me. As I just found out, @Benny has found the same solution to this problem.
I found out that by disabling the network adapter for my NordVPN, the issue suddenly disappeared. If you are using Windows, I'd suggest you check if you have any network adapter which could be disabled.
You can enter this path (Control Panel\Network and Internet\Network Connections
) in your top bar of the Control Panel if you would not like to click through some steps, otherwise just follow these steps:
After these changes, check your Android Studio to see if disabling the adapter solved your problem.
Upvotes: 3
Reputation: 8815
In my case, I have several virtual network adapters. disabling those virtual adapters solved the problem.
Upvotes: 3
Reputation: 1739
I had a similar problem and managed to solve it the following way:
Quick fix
Extended sollution
By checking the Android Studio logs (Help -> Show Log in Explorer) you can find an error message regarding the adb mDNS daemon.
INFO - ireless.WiFiPairingServiceImpl - 'adb mdns check' (not supported) result:
INFO - ireless.WiFiPairingServiceImpl - ERROR: mdns daemon unavailable
INFO - ireless.WiFiPairingServiceImpl - Checking if mDNS is supportState result: NotSupported
If you run that command in e.g. Powershell (adb mdns check
) you will see that you get the exact same error message. After some research I found out you could disable this mDNS service in the Andoid Studio settings.
Now a pop-up window should appear asking you to allow adb network access. Click on allow access.
Wi-Fi pair should work now.
Upvotes: 6
Reputation: 472
SOLVED
Go to Settings->Build->Debugger-> ADB
and set Automatically start and manage server.
You must have changed it to a manual value (second option) which causes that pop-up showing 'system does not meet requirement'
Upvotes: -2
Reputation: 617
Recently I updated my android build tools to version 32.1.0-rc1 and the problem where gone
Upvotes: 0
Reputation: 116
Facing the same problem. I think it's an issue as of now as Bumblebee update is just a few days old, and it will be resolved in later updates.
Until then you can try using the other method i.e. pairing with OTP. It's mentioned in the official documentation as well. I tried it and it's working fine for me.
Connect to a device over Wi-Fi (Android 11+)
It is mentioned in the last step with an image of how pairing with OTP would give a successful response once paired. Also your workstation name will start displaying in your Android Device once paired successfully.
After that you just need to type this command in your terminal (as mentioned in @Ali Salehi's answer)-
adb connect ipaddr:port
[where ipaddr = IP Address, port = Port No., visible in the Wireless debugging option in our phone.]
Your device will then be visible in the Device Manager and apps will get installed directly over Wi-Fi!
Upvotes: 2
Reputation: 194
If you could not solve the problem , and you need to connect your smart phone to your pc , you can always do this :
in android SDK folder inside of "platform-tools" folder , open cmd
Connect the device and the computer to the same Wi-Fi network
Plug the device to the computer with a USB cable to configure the connection
On the computer command line type: adb tcpip 5555
On the computer command line type: adb shell ip addr show wlan0 and copy the IP address after the "inet" until the "/". You can also go inside the Settings of the device to retrieve the IP address in Settings → About → Status.
On the computer command line type: adb connect ip-address-of-device:5555
Upvotes: 0