Android Studio doesn't see genymotion

后端 未结 10 1528
心在旅途
心在旅途 2020-12-07 23:52

I updated 0.5 to 0.8.14 version of android studio , but now studio doesn\'t see genymotion , what I must do now ? Thanks for all .

Edit :I solved the problem by

相关标签:
10条回答
  • 2020-12-08 00:41

    One words(you need find your devices ip): adb connect 192.168.***.***:5555


    2019-03-19 09:10:00

    My enviroment:

    • Ubuntu 18.04
    • Genymotion Version 3.0.1
    • Android Debug Bridge version 1.0.40
    • AndroidStudio version 3.3.2

    My problem:

    1. adb devices : list is empty
    2. no usb devices or running emulators detected

    My solution :

    1. cd /opt/genymobile/genymotion
    2. ./genymotion-shell
    3. devices list (if no running devices start one)
    4. in other terminal run commond : adb connect yourDeviceIP:5555

    Reference:

    1. https://stackoverflow.com/a/27262302/7707781
    2. https://stackoverflow.com/a/24926960/7707781
    0 讨论(0)
  • 2020-12-08 00:41

    After few research I found a solution, open task bar and just End Process the adb.exe, hit run (android studio) and adb will be recreated and your genymotion emulator will be on the list. Thumbs up

    0 讨论(0)
  • 2020-12-08 00:43

    Genymotion by default uses it's own ADB binary. If it has a different version than the one Android Studio is using, they can conflict and you get lots of issues. One of them can be Genymotion not being detected, and problems deploying apps.

    I would recommend setting Genymotion to use the ADB/Android SDK that Android Studio is also using, instead of using the default one. That way you will avoid conflicts on future updates.

    enter image description here

    0 讨论(0)
  • 2020-12-08 00:46

    I had the same problem, I close genymotion, then clicked on Run button , so the "Select Deploymnt Target" dialog opened. after that I open genymotion as administrator, start virtual device and after a minute it appear in "Select Deploymnt Target" dialog.

    I think the key point is that genymotion has to be run after android studio, and maybe with "Select Deploymnt Target" dialog has to be opened!

    It works for me anyway

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