Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Don't see genymotion virtual device at list

Yesterday my emulator worked stable and good. But today I can't launch my app because I don't see any of my genymotion devices. I have reinstalled my AS and Genymotion. I have reinstalled my virtual devices. But I still don't see any of my devices. I thought that I have problems with AS and I create AVD at Android Studio, and I managed to create a new device, but I didn't manage to launch my app. I don't know how to solve this problem. I saw this question. As I see at genymotion dashboard that my virtual device continue booting and can't finish his booting anyway.

like image 878
Andrew Avatar asked Mar 14 '19 08:03

Andrew


People also ask

Why is my Genymotion not working?

You are trying to run Genymotion Desktop in a virtual machine, a server or a Windows Cloud instance (AWS, GCP, Azure, ...) Genymotion Desktop has been designed to run in a physical environment. For this reason, Genymotion Desktop will not work if run in a virtual machine, a server nor a Cloud instance.

Where is Genymotion installed?

Genymotion uses VirtualBox to run the Android emulator on your computer. So, you must have hardware virtualization (VT-d/VT-x/AMD-v) enabled in your BIOS and VirtualBox installed in order to use Genymotion. VirtualBox is available in the official package repository of Ubuntu 18.04 LTS.


1 Answers

Found solution! Looks, like this is some adb or Genymotion bug. To solve this, you must manually connect adb to running Genymotion Device In first, you need to know Androids internal IP. You can find it in window title of Genymotion device. Next:

  1. cd to your Android SDK dir
  2. cd to platform-tools
  3. ./adb connect 192.168.57.102:5555

where 192.168.57.102 is my IP address of Genymotion Virtual Device. You must put here your own

like image 138
r0ck3r Avatar answered Oct 21 '22 04:10

r0ck3r