-4

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 !!

enter image description here

HiDeoo
  • 10,353
  • 8
  • 47
  • 47

2 Answers2

1

You can connect via adb to Genymotion with

adb connect <your ip>

Where your ip you can find on Genymotion Virtual Device Manager

  • but I can't find my genymotion IP address in Virtual Box manager ? – Mohamed Mahmoud Arafa Aug 10 '16 at 08:32
  • 1
    You 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