1

I have successfully installed Android Studio, it works really great thus far.

I have also downloaded Genymotion which came with virtual box, that works really great thus far as well.

In Genymotion , I added the file path from Android Studio Tools which I copied and paste from SDK Manager.

In Android Studio, as well, I added the path ( I believe the Default file path it is): C:\Program File\GenyMobile\Genymotion

I then started the device in Genymotion of my choice , the emulator showed up (This worked out great !)

Then I went to Android Studio (while the device in Genymotion status states booting) to run the program. The emulator from Genymotion didn't come up under connected devices ( ).

There is also a little pop up in the same window that says: " No USB Devices or running emulators detected "

The question here is:

Why is it that the emulator from Genymotion isn't showing under connected Devices)?? Is it that I did not install a specific Android Tool?

I am using an AMD machine - Windows 10 hence I downloaded and chose to work with Genymotion instead as the emulator in android studio, is taking very long to come and nothing really comes up on the screen.

Anyone's assistance is greatly needed, Thank you

Candice Dick
  • 109
  • 1
  • 16

2 Answers2

1

The reason is, ADB does not connect with the Genymotion virtual device. That is a bug of Genymotion actually. So you have to manually do that. Refer this to do it manually. And also you will have to install the plugin for Android Studio as well. Refer this to install the plugin.

You can find the IP of the virtual device in the device's window.

HasithaJay
  • 355
  • 2
  • 9
0

I got same problem and now, I fixed it.

  1. Make sure Genymotion to be installed. If not, please download genymotion file to install, such as: genymotion-3.0.2-linux_x64.bin. Following:

    https://linuxhint.com/install_genymotion_android_emuator_ubuntu/

  2. Choose Custom android sdk tools in genymotion

    $ cd ~/genymotion

$ ./genymotion

now, genymotion window will be shown Genymotion window

Then click Genymotion > Settings > ADB , choose Use custom android sdk tools and click to Browse to android sdk folder. After this, you will see "This folder is valid"Genymotion ADB Settings

  1. Install genymotion in android studio and browse to genymotion folder Open android studio, click File > Settings > Plugins , search "genymotion" and click install to download and install genymotion. genymotion plugin click Apply and OK .

After that, open again File > Settings . you will see Genymotion in botton of window. choose Genymotion and browse to Genymotion folder [Genymotion folder4 , click Apply and OK Restart android studio, click View and choose Toolbar, you will see genymotion icon in toolbar. Now, you can create, open genymotion device and run project.

AquariusPotter
  • 156
  • 2
  • 10
  • If you got error : **unable to load script from assets 'index.android.bundle'** , please following the link to fix : [https://upokary.com/unable-to-load-script-from-assets-index-android-bundle/] – AquariusPotter Aug 26 '19 at 10:35