Android studio doesn't recognize the running emulator

前端 未结 6 1425
[愿得一人]
[愿得一人] 2021-01-31 10:25

When I run my app from AndroidStudio 0.4.3 using Run I see Choose Device which has two sections choose a running device or Launch Em

相关标签:
6条回答
  • 2021-01-31 10:43

    Wipe Data and restarting emulator helped me, hope this helps to someone.

    0 讨论(0)
  • 2021-01-31 10:45

    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.

    0 讨论(0)
  • 2021-01-31 10:47

    Unchecking the "Enable ADB " worked for me

    0 讨论(0)
  • 2021-01-31 10:50

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

    0 讨论(0)
  • 2021-01-31 10:55

    inside AVD manager, select your virtual devices, then 1 stop, 2 wipe user data, 3 cold reboot, works for me.

    0 讨论(0)
  • 2021-01-31 10:59

    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.

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