Reputation: 139
I am trying ADB wireless in Android 11 without cable.
Still cannot see the device in ADB devices or in the RUN section of Android studio (i.e. cannot run the application to connected device)
Look at the screenshots below, what could be the problem here?
Upvotes: 1
Views: 1718
Reputation: 402
You this package to scan QR from command line
https://www.npmjs.com/package/adb-wifi
npm i -g adb-wifi
and run
adb-wifi
Scan the QR code
Make sure you are in same wifi
Upvotes: 1
Reputation: 301
you've to connect the device with adb connect ip:port
so according to the screenshot it should be adb connect 192.168.1.101:41743
Upvotes: 1