Home > Software engineering >  Running wifi adb on android 10 device
Running wifi adb on android 10 device

Time:12-05

Can I run wireless debugging on android 10 device for android development on android studio?

I have tried to solve this problem but I stuck...

CodePudding user response:

Wireless debugging is an optional feature that is not available on all devices. Some devices may not have it enabled by default, while some may have it disabled or require additional steps to enable it.

Android Studio supports wireless debugging on Android 10 devices. To enable this feature, you must first enable Developer Options on your device and then enable the Wireless debugging option. You can then use a USB cable to connect the device to your computer, open the Developer Options, and enable the Wireless debugging option. After that, you can start debugging your app wirelessly.

CodePudding user response:

To be officially supported you need Android 11 .

Android 11 and higher supports deploying and debugging your app wirelessly from your workstation using Android Debug Bridge (adb). For example, you can deploy your debuggable app to multiple remote devices without physically connecting your device via USB. This eliminates the need to deal with common USB connection issues, such as driver installation.

To connect a device running Android 10 or lower, follow these initial steps over USB:

adb tcpip 5555
adb connect device_ip_address:5555

See https://developer.android.com/studio/command-line/adb

  • Related