I installed Genymotion with a virtual Box and the Genymotion plugin (Android Studio), created a new device and runs properly, even from Android Studio.
However when I hit the Run button, the Genymotion device does not appear on the Device Chooser, it says 'Nothing to Show' under the 'Choose a running device' radio button. How can I get the Genymotion device to appear on the Device Chooser and run my app? Is it something I am missing from the SDK manager?
This happens because Genymotion is shipped with outdated Android tools. To solve follow the steps:
On Mac with a recent version of Studio that would be:
I also am facing the same issue in new version of Android studio. following is my routine that everyday i am doing to solve this issue:
Click Run icon to see empty list of device
Close this list
Kill adb by:
Sometime you need to run this command twice.
Start adb again by:
Click run again. Now I will see list of my emulators but not my Genymotion that is already up and running!
I will add my Genymotion by:
This command has to be run when select device dialog is still open.
Now everything will be OK.
In my case the genymotion path was not set ..so I solved it by clicking the genymotion icon from the tool bar and enter the path (the default in windows is C:\Program Files\Genymobile\Genymotion) then after starting the emulator it now appears in android studio
When you close the device, it is no longer available to the device chooser. You need to keep running the device from Android Studio.
I had the same problem, but I solved it.
Before running
genymotion
you have to first click on run and wait until project compile and show you the empty device list and then you have to start yourgenymotion
, after that it will appear.genymotion
That worked for me. Hope it helps.