I am working with react native, and would like to switch adb to wifi for easier debugging.
I connect my device using usb, then type these commands.
adb tcpip 5555
Then I disconnect my usb cable and enter this command
adb connect 192.168.1.6
connected to 192.168.1.6:5555
adb devices result in the following
adb devices
List of devices attached
192.168.1.6:5555 device
So it only shows one device connected. However trying this command
adb reverse tcp:8081 tcp:8081
gives me the following error even though only one device is shown with adb devices command as shown above
error: more than one device/emulator
So I tried this command but I also get the same error
adb -s 192.168.1.6:5555 reverse tcp:8081 tcp:8081
error: more than one device/emulator
Trying the following gives me the same error
adb -s "192.168.1.6:5555" reverse tcp:8081 tcp:8081
adb -s "192.168.1.6" reverse tcp:8081 tcp:8081
adb -s 192.168.1.6 reverse tcp:8081 tcp:8081
even trying to use the device id which I copied when it was connected to usb resulted in the same error
adb -s deviceid reverse tcp:8081 tcp:8081
Is there a way to make adb reverse work when adb is connected wireless?
Thanks for advance.
adb shell
? Did you tryadb kill-server
andadb start-server
? Which version do you have? (adb version
) Check developer.android.com/studio/command-line/adb – lojza