Error “AdbCommandRejectedException: device not found” in Eclipse using Android emulator

后端 未结 8 1667
傲寒
傲寒 2020-12-15 18:52

I\'ve tried to change the build of an application, and now eclipse doesn\'t work.

There is nothing in the console, and when I launch the debug, there is nothing on t

相关标签:
8条回答
  • 2020-12-15 18:58

    If you are using the Emulator and restarting adb doesn't solve the problem then close the current running Android virtual device and Launch it again.

    0 讨论(0)
  • 2020-12-15 19:00

    on-off your USB debugging on mobile phone or your AVD maybe help you solve this problem. This method is work for me :)

    0 讨论(0)
  • 2020-12-15 19:03

    I encountered a similar issue on Linux. It turned out that my adb server was running under my user account, so running the following fixed the issue:

    sudo adb kill-server
    sudo adb start-server
    
    0 讨论(0)
  • 2020-12-15 19:04

    Restart the eclipse once...and try again

    ...

    0 讨论(0)
  • 2020-12-15 19:07

    I also faced same problem. Go to developers Option and then Revoke USB debugging authorization.

    0 讨论(0)
  • 2020-12-15 19:11

    Try adb kill-server and adb start-server to restart the adb. It can be found in your android sdk directory, subfolder plattform-tools.

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