Issue
I have used Android Studio Bumblebee's latest function (Wifi pairing) for 2 - 3 days before it stopped working.
I am now receiving the error "This system does not meet the requirements to support Wi-Fi pairing. Please update to the latest version of "platform-tools" using the SDK manager"
I have updated everything to the latest version.
Solution
I had to set the environment variable ADB_MDNS_OPENSCREEN
to 1
.
Here's my PowerShell code:
$env:ADB_MDNS_OPENSCREEN=1
adb kill-server
adb start-server
This is because MDNS is disabled by default in v 31.0.2: https://source.android.com/devices/automotive/virtualization/tools
Answered By - Rashi Abramson
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.