Android Studio doesn't see device

后端 未结 30 2312
南方客
南方客 2020-11-22 14:44

The AVD Manager in Android Studio doesn\'t show my device but adb devices does show it. Am I missing something obvious here?

30条回答
  •  孤街浪徒
    2020-11-22 15:30

    I have found that what works for me is:

    • CD to your sdk platform-tools folder

    • Check if adb sees your device

      ./adb devices
      
    • If it displays 'List of devices attached' and a blank line below, then restart adb as follows:

      ./adb kill-server
      ./adb start-server
      

      then re-run ./adb devices and see if it picks up the device, eg as follows:

      List of devices attached
      015d2bc285601c0a device

提交回复
热议问题