skip to Main Content

I am trying to connect my phone to Android Studio wirelessly but when attempting to make my phone to listen to port 5555 by using the command ADB TCIP 5555, I am getting the following error:
adb: unknown command tcip

2

Answers


  1. It should be tcpip:

    adb tcpip 5555
    
    Login or Signup to reply.
  2. The command is adb tcpip <port>.

    Try running adb tcpip 5555

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search