Android Studio wireless ADB error (10061)

前端 未结 27 1724
一生所求
一生所求 2020-12-13 00:46

It seems that wireless ADB has more and more issues each time I update Android Studio. Using 2.1.1, I\'m now unable to connect to my tablet using the command:



        
27条回答
  •  孤城傲影
    2020-12-13 01:28

    I assume you already solved the problem by now. but here is the way to avoid the problem if you are using multiple devices. I used to have the same issue so many times until I understand, how it works. I was also trying to connect multiple devices one after another or trying to connect the same device after a while.

    Always make sure to disconnect the older device before you connect the new device:

    adb disconnect
    

    after that, you will be easily able to connect new device:

     adb tcpip 5555
     adb connect 
    

    you can always try to ping the device using the ping command, if the ping is not getting acknowledgment then you must have connected to different wifi then your laptop or you haven't connected to wifi at all:

    ping 
    

提交回复
热议问题