Android emulator not showing up in Device Chooser

I have a strange problem here. When I launch the emulator, it starts after a while, but it does not appear on the Android Device Chooser (it appears several times). Has anyone encountered this situation before?

Here is a snapshot of the situation. As you can see, one emulator runs on port 5554 (GingerBreadGoogleAPI), but Device Chooser does not display the emulator or device. Cmd ./adb devices does not list any device. I am running the Linux 3 kernel on Kubuntu OS with 2 GB of RAM.

One solution (which I make) is to simply launch another emulator. But I do not want a solution to the problem, instead I want to know why this is happening.

+6
source share
1 answer

It happens sometimes; I also run into this problem.

I always try kill-server and start-server

You can find ADB in SDK_Folder / platform tools

First do

 ./adb kill-server 

then

 ./adb start-server 

and check

 ./adb devices 
+32
source

Source: https://habr.com/ru/post/916623/


All Articles