19

I updated from Mavericks to Yosemite and now I can't use any Genymotion device anymore.
You can see the devices in Eclipse, but when you want to run an application you can't select one of these devices.

I've already re-installed Eclipse, Genymotion and Virtualbox...


The Genymotion Virtual Devices Manager shows a Nexus 5 which is stated 'On' Genymotion Virtual Devices Manager shows an Nexus 5 and the stat is 'On'

When I want to run my application, there is no Nexus 5.. Android Device Chooser doesn't show the Nexus 5

skolima
  • 31,963
  • 27
  • 115
  • 151
Thomas More
  • 443
  • 3
  • 10

4 Answers4

73

This is a bug in eclipse - OSX yosemite, what you need to do is in the Android Device Chooser Window, try to RESIZE THE SERIAL NUMBER TAB and you will see the genymotion emulator that is running

If you don't see it, or the Android Device Chooser Window doesn't appear, check three things before running again:

  1. Developer Options is enabled from settings (by repeated touching 7 times the build number in about phone), even though developer options is available in the list of apps in genymotion emulator
  2. In Settings>Security, make sure "Unknown Sources" is enabled
  3. Go to Run Configuration (for Android app), select the Target Tab, Enable Always prompt to pick device and hit apply.

Additionally I downloaded the jar files from Genymotion Download Page manually and replaced it in the plugin folder of eclipse.

EDIT

FYI, a bug has been opened in AOSP's issue tracker.

Issue 78436: [ADT/Eclipse] Cannot see my device in the Android Device Chooser dialog even though it is there in the Devices view

At bottom of this page, there is a link to 'Vote for this issue' ...

Pascal
  • 15,257
  • 2
  • 52
  • 65
arkentos
  • 989
  • 10
  • 10
  • 1
    This must be a bug with Yosemite/Eclipse. It worked fine before I upgraded to Yosemite. This is a great answer, as the solution is nonsensical – krodmannix Oct 20 '14 at 05:14
  • ya, initially i too thought something went amiss after the upgrade, but genymotion running fine in android studio made me look around. – arkentos Oct 20 '14 at 08:09
  • 21
    RESIZE THE SERIAL NUMBER TAB! – Philipp Jahoda Oct 30 '14 at 21:46
  • @PhilippJahoda Thanks!!! I was going to reinstall my eclipse, but your answer just saved me! – Pan Long Nov 02 '14 at 00:57
  • @PhilippJahoda Thanks. I had the same problem since I upgrade to Yosemite. Android device choose window behave in the same way with all devices including third party emulators. I kept reconnecting my device and changing the cables. you have solved a big problem and I did not even think about it. – user1154390 Nov 09 '14 at 10:48
  • Not so obisous so I comment, RESIZe the SeRIAL NUMBER TAB and it's appearing… strange that I have this issue only with Genymotion devices. – Nicolas Lauquin Jan 16 '15 at 09:03
0

I can resolve this problem by connect a real device one time.

Victor Kushnerov
  • 3,706
  • 27
  • 56
0

Please scroll down and see list of devices which is connected to ADB.enter image description here

enter image description here

iAndroid
  • 951
  • 7
  • 18
0

I had a similar issue, but my problem was that the emulated device was running Android 4.3 (SDK version 18), but the app had android:minSdkVersion="19" so since no compatible device was found the list was empty.

Double check your emulated device version, and the minSdkVersion number, to make sure it's compatible.

Sandy
  • 2,572
  • 7
  • 40
  • 61