Reputation: 73
The virtual device seems to be running but its status is stuck on booting so I can't install GApps
(which I need to test some app) also it doesn't appear in the list of devices in Android studio
.
I found this workaround to manually connect adb
to Genymotion
, but I still have an issue with GApps
how can I install them?
Upvotes: 3
Views: 3816
Reputation: 1307
I was having the same problem, what worked for me was running:
adb devices
If that doesn't work, try running
adb kill-server
adb start-server
Upvotes: -1
Reputation: 109
I have had this same issue previously. However, what I did was that I closed Genymotion, reopen it and restarted the device.Then went to Android Studio and run the app. You should then see the device under 'Connected Devices'. You should be able to see your design on the emulated device.
Upvotes: 0