Eclipse detecting the same device multiple times

前端 未结 4 909
野趣味
野趣味 2020-12-11 03:30

I am facing a strange problem. The eclipse is deteting the same device multiple times and thus is unable to run the project showing error as :

Failed to inst         


        
相关标签:
4条回答
  • 2020-12-11 03:34

    In windows start task manager >>> Processes Tab >>> Right click adb.exe*32 >>> End Process and Press End Process on the dialog box.

    0 讨论(0)
  • 2020-12-11 03:43

    update : It is not needed to restart/close Eclipse

    As told in comments by Ved Praksh, the solution is:

    Exit Eclipse

    End all adb processes from task manager as well.. Then:

    In cmd, adb kill-server --> adb start-server --> adb devices

    Then restart eclipse.

    Most probably it will show only one device this time.

    0 讨论(0)
  • 2020-12-11 03:52

    Try

    ./adb kill-server
    ./adb start-server
    ./adb devices (This should show your device exactly once)
    

    and it should work.

    And also restart Eclipse after this.

    0 讨论(0)
  • 2020-12-11 03:55

    Reset adb in eclipse,If the problem persists it may be caused due to some hardware related issues with the usb port or your cable. try using another cable/port/device and check whether the issue is solved.

    0 讨论(0)
提交回复
热议问题