Reputation: 2310
I've updated my Android Studio and cannot see anymore my running emulators for running/debugging my app.
Previously I had Bumblebee (2021.1.1) and updated to Chipmunk (2021.2.1) and I encounter this issue.
I want to mention that previously everything was working fine, I've also researched on the internet and couldn't find anything that I'm missing, I have the following or tried:
flutter config --android-sdk
flutter doctor
, flutter devices
, they work fine, just that there are no device online.I've also tried to downgrade again, but still not working, although 1 out of 10 it worked, after quit or restart.
I will try to also change the way I use the SDK, although from terminal it works ok.
Does anybody else encounter this issue recently?
Thanks!
Upvotes: 1
Views: 1726
Reputation: 2310
So after some random debugging, I found out that Docker Desktop was causing the problem. After I close it, the emulator appeared...
Want to point out that the port wasn't being used:
sudo lsof -iTCP -sTCP:LISTEN -n -P | grep 5554
Upvotes: 0