Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Start my application on genymotion

I have just installed genymotions, but when I try to start my app on it, as described at the end of this paragraph, eclipse starts the old emulator even if the new one(genymotion) is running. I tried to change the debug configuration but the only virtual devices that I can see in target are the old emulators(see the photo below).

If in target i follow this answer, I get the following error :

[2014-01-30 19:50:00 - HelloWorld] No active compatible AVD's or devices found. Relaunch this configuration after connecting a device or starting an AVD.

Moreover I followed the FAQs that suggests how to bing the SDK. I show my configuration in the second photo.

The devices shown in the photo are all made with AVD, there aren't the one of genymotion and neither the one that is running: enter image description here

Here I put the configurations of genymotion: enter image description here

How can I say to eclipse to start the genymotion emulator and not the AVD one?

like image 736
giacomotb Avatar asked Jan 30 '14 19:01

giacomotb


People also ask

How do I use Genymotion for personal use?

Go to the Download section and download the version for your system. Refer to the online user guide to install Genymotion for your system. Launch Genymotion and click CREATE to create an account, or go here. You should receive an activation email within an hour.

How do I play games on Genymotion?

Genymotion does not offer any gaming enhancement features, such as macros, keyboard mapping or Bluetooth support for controllers yet. If you wish to help us implement such features, feel free to open a discussion at our Github public discussion board.


2 Answers

Looking at your screenshot I think you should unselect all the AVDs displayed on the list. The option you chose launches the best selected AVD by default, and optionally a device.

Also, the Genymotion instances are considered as real devices by ADB and ADT. So, as GhostDerfel mentioned, you need to run one of them before running your app on Genymotion instance.

To know all the detected devices by ADB you can look at the "Devices" section of DDMS. If a Genymotion device is detected, it should show a name like this : genymotion-galaxy_s3....

You can also run this command adb devices. The result should show something like this:

List of devices attached
192.168.56.102:5555     device

Each Genymotion machine is listed by its local IP address here.

If you can't find your Genymotion instance(s), check that you have the lastest version of Genymotion. A ADB detection bug has been fixed on the release 2.0.2

like image 115
eyal-lezmy Avatar answered Sep 29 '22 05:09

eyal-lezmy


I had the same problem, i solved it by closing Genymotion and starting it from Genymotion Virtual Device Manager in Eclipse

like image 43
zerone.01 Avatar answered Sep 29 '22 04:09

zerone.01