Reputation: 940
On Android 11 and above it's available the option "Wireless debugging", so no problem there.
However, on Android 10 and below there is no option for wireless debugging. In order to make the client listen on a specific port, we need to manually execute tcpip 5555
.
There are two option as far as I know:
tcpip 5555
directly on the target device (android) with root permissions.adb tcpip 5555
from another device with an usb cable.Question:
is it possible, on Android 10 and below, to listen on a port (for debug purposes) without root permission or an usb cable from another device?
Upvotes: 0
Views: 499