A3IOU
A3IOU

Reputation: 249

Genymotion Still waiting at "Booting"

I use Genymotion for Android Studio but genymotion still booting does not On status

I searched for a solution and followed

But I can't fix it

Genymotion v3.0.1

VM VirtualBox v6.0.4

Please help me find a solution. Help me.

Sorry for my english

here

Upvotes: 10

Views: 19340

Answers (9)

sameer alkhlil
sameer alkhlil

Reputation: 31

In my case:

  1. Go to the virtual box
  2. Right-click on tools => host manager network
  3. Remove all virtual network adapters
  4. Run Genymotion emulator

Upvotes: 3

Changer
Changer

Reputation: 359

Try to run genymotion as administrator. It worked for me.

But then you will not be able to add files to the emulator by using drag & drop feature.

Upvotes: 2

Pravin Ghorle
Pravin Ghorle

Reputation: 690

Tryed solutions but none worked for me.

At the end run the genymotion as a administrator, now it's work for me.

Upvotes: 1

Bhushan
Bhushan

Reputation: 61

just go to Control Panel\NetworkandInternet\Network Connections just c to that virtual host-only network is enabled and disable other duplicate virtual host-network which are with "#" and try to start again. It works for me

Upvotes: 3

glen
glen

Reputation: 51

I killed the running adb process in task manager and the status of the genymotion device changes from booting to on. Finally the genymotion emulator can now be recognized.

Upvotes: 5

João Mello
João Mello

Reputation: 304

One possible reason for the occurrence of this error is due to the difference in adb versions in the development machine and the connected connected device/emulator being used for debugging.

So resolution is:

Firstly disconnect device/emulator.

Run on terminal/command prompt following commands:

adb kill-server
adb start-server

This will start the adb successfully. Now you can connect device. Hope it helps.

Upvotes: 1

CHAN
CHAN

Reputation: 1566

Tried to reset cache, re-create the device, toggle network mode, upgrade Genymotion to 3.0.1, and NONE of them worked.

A temp fix to change "booting" status to "on":

  1. Open Genymotion Shell

  2. run devices list

  3. then run in a new terminal adb connect [DEVICE IP]:5555

Upvotes: 16

r0ck3r
r0ck3r

Reputation: 435

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:

cd to your Android SDK dir cd to platform-tools ./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

Upvotes: 8

A3IOU
A3IOU

Reputation: 249

Solution:

  • make sure there are no adb servers running. Use the command adb kill-server to kill any running server.

  • set Genymotion to Use Genymotion Android tools (default)

See: https://docs.genymotion.com/latest/Content/02_Application/Configuring_Genymotion/ADB.htm

This work for me.

I am very happy to be able to solve this problem, I can't work for 2 days with this problem.

Upvotes: 1

Related Questions