I use Ubuntu 16.0 and Android studio 2.1.2 I created some of a virtual device in AVD manager , and also I'm run Genymotion as a virtual device , but when I'm open ADB manager I can't see any device at list !!
Asked
Active
Viewed 79 times
-4

HiDeoo
- 10,353
- 8
- 47
- 47
-
than create new emulator .............. – sushildlh Aug 10 '16 at 08:04
-
What is your question? Shell we sympathize or is there anything else we can do for you? – xenteros Aug 10 '16 at 08:05
2 Answers
1
You can connect via adb to Genymotion with
adb connect <your ip>
Where your ip you can find on Genymotion Virtual Device Manager

Giacomo Mattiuzzi
- 305
- 1
- 8
-
but I can't find my genymotion IP address in Virtual Box manager ? – Mohamed Mahmoud Arafa Aug 10 '16 at 08:32
-
1You can find the ip under setting of android -> Wifi -> Advanced... In other way you can install plugin for Eclipse/Android Studio of genymotion for debugin directly by the IDE: https://docs.genymotion.com/Content/Home.htm Here some guides.. **https://docs.genymotion.com/pdf/PDF_Plugin_for_Eclipse/Plugin-for-Eclipse-1.0.6-Guide.pdf** This one is for installing plugin for Eclipse. **https://docs.genymotion.com/pdf/PDF_Plugin_for_Android_Studio/Plugin-for-Android-Studio-1.0.7-Guide.pdf** This one is for installing plugin for Android Studio. – Giacomo Mattiuzzi Aug 10 '16 at 11:56
0
This is usually occurs when your adb daemon is not running. So you need to restart it or just start.
Do do this you can try next two commands in terminal:
adb stop-server
adb start-server

Sergey Pekar
- 8,555
- 7
- 47
- 54
-
thank you for your response : i try it from command line and from Android monitor by restarting adb , but it is still doesn't working . – Mohamed Mahmoud Arafa Aug 10 '16 at 08:10
-
You are welcome. Don't forget to vote for my answer if it helped you ;-) – Sergey Pekar Aug 10 '16 at 08:13