emulator not showing in adb devices

后端 未结 3 1491
攒了一身酷
攒了一身酷 2020-12-28 13:40

if i start an emulator using the android SDK r12 it does not show up in the adb devices list

win7 64 // android 2.2 (not an actual hardware device - just the emulato

相关标签:
3条回答
  • 2020-12-28 13:53

    Sometimes even adb itself bugs, for me always works good old pkill:

    pkill -9 adb
    
    0 讨论(0)
  • 2020-12-28 14:01

    You can also try to :

     adb kill-server
     adb start-server
    

    to restart the adb server. Maybe something went wrong with the adb-server. This happens a lot, and many such issues can be solved by restarting the server.

    0 讨论(0)
  • 2020-12-28 14:16

    Make sure that you are at the path and give command.

    android-sdk_r12-windows\android-sdk-windows\platform-tools>adb devices
    

    I am also using win7 64 It is working for me. If you are getting any error. Mention it.

    Also make sure that USB debugging is enabled in your device.

    Settings>Applications>Development>USB debugging
    

    Can you able to see device in eclipse? If not then close your emulator and open it again.

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