androidkotlin

Running wifi adb on android 10 device


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...


Solution

  • 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