Android studio doesn't recognize the running emulator

℡╲_俬逩灬. 提交于 2019-12-02 17:11:57

Disable and then Enable ADB Integration

In Android Studio go to

  1. Menu -> Tools
  2. Android
  3. Enable ADB Integration (should be checked, click to remove check)
  4. Enable ADB Integration (should not be checked, click to add check)

Run your app again. Emulator that was previously missing from Run dialog should be available to be selected upon which to run your app.

danijoo

Try to kill the adb server and restart it.

Locate your adb binary (linux/osx) or adb.exe (windows) and do:

adb kill-server
adb start-server

this should fix your problem

Even if your problem still not solved then Restart emulator.

On Windows, running Android Studio with administrator permissions can help (in addition to restarting adb server).

Unchecking the "Enable ADB " worked for me

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!