Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Ubuntu 16.0 和 Android Studio 2.1.2 我在 AVD 管理器中创建了一些虚拟设备,并且我将 Genymotion 作为虚拟设备运行,但是当我打开 ADB 管理器时,我在列表中看不到任何设备!!
您可以通过 adb 连接到 Genymotion
adb connect <your ip>
您可以在Genymotion 虚拟设备管理器上找到您的 ip
这通常发生在您的 adb 守护程序未运行时。所以你需要重新启动它或只是启动。
这样做你可以在终端中尝试接下来的两个命令:
adb stop-server adb start-server