Android Studio does not see genymotion

I updated the Android version from 0.5 to 0.8.14, but now the studio does not see genymotion, what should I do now? Thanks for all.

Edit: I solved the problem by also updating genymotion

+59
android android-studio genymotion
Dec 03 '14 at 0:18
source share
8 answers

By default, Genymotion uses its own binary ADB code. If it has a different version than one Android-studio, it can conflict, and you have a lot of problems. One of them may be Genymotion not detected, and problems with application deployment.

I would recommend setting Genymotion to use the ADB / Android SDK, which also uses Android Studio, instead of using the default. This way you will avoid conflicts with future updates.

enter image description here

+159
Dec 03 '14 at 1:25
source share
— -

You must first install the plugin for Genymotion, click on the “File” tab, find the “Plug-in” option, down, look for Genymotion, and then install. After installation, you need to restart Android Studio, after which you will see the Genymotion icon next to the Sdk Manager icon, click on it, and then simply indicate the location of your Genymotion installation. Also, make sure you have the "Oracle Virtual Box" installed to use Genymotion, this is a requirement.

Edit - enter image description here

Then your genymotion virtual machines will appear, click the one you want (I think it needs to be turned off to start clicking / not popping), then click "Start",

enter image description here

then click the green play icon next to the center of the button bar below the menu bar, and then the genymotion virtual machine appears, which will be displayed in the "running devices" section. select it and click “OK”, and it should start and show your program.

enter image description here

+24
Dec 03 '14 at 3:24
source share

Open the Genymotion shell, use the devices list command line, showing enter image description here and then in cmd use the command line adb connect IP address .if not show devices in studio.maybe restart studio.

+8
Dec 03 '14 at 1:45
source share

In a word (you need to find your ip devices): adb connect 192.168.***.***:5555




2019-03-19 09:10:00

My environment :

  • 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 working emulators detected

My decision:

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

Link:

  1. stack overflow
  2. stack overflow
+5
Mar 19 '19 at 1:09
source share

I had the same problem, I closed genymotion and then clicked the Run button, so the "Select Deploymnt Target" dialog box opens. after that I open genymotion as an administrator, start the virtual device and after a minute appears in the "Select Deploymnt Target" dialog box.

I think the key point is that genymotion should start after android studio, and maybe with the "Select Deploymnt Target" dialog box you need to open it!

It works for me anyway

+4
Sep 12 '16 at 4:23
source share

After several studies, I found a solution, open the taskbar and just finished the process. adb.exe, hit run (android studio) and adb will be recreated and your genymotion emulator will appear in the list. Thumbs up

+2
Dec 20 '16 at 1:13
source share

first install the genymotion plugin, restart and android studio. After the restart, you will see the genymotion device manager icon next to the sdk manager icon, select it and add the path where you have the genymotion folder. If you did not see this icon, search for the genymotion device manager. you get it

0
Aug 19 '18 at 11:32
source share

When I upgraded Android Studio to 3.4, the same problem occurred on my system.

  1. Open the Genymotion program,
  2. Click the “Genymotion” text in the upper left corner,
  3. "Settings" → "ADB" → check the box "Use Genymotion Android tools (default)"
  4. Restart the Genymotion program.

enter image description here enter image description here

0
May 13 '19 at
source share



All Articles