Home > Back-end >  IntelliJ device selector for Flutter projects does not list Android emulators before they are starte
IntelliJ device selector for Flutter projects does not list Android emulators before they are starte

Time:07-12

I use IntelliJ to develop Flutter apps. In the device selection dropdown in IntelliJ toolbar, the Android emulators that are not currently running do not appear. They do appear after I start them by other means (through Android Studio). So I cannot start up an Android emulator from IntelliJ. Why may this be happening?

CodePudding user response:

This is because ANDROID_HOME environment variable is not set.

After setting it system-wide and restarting IntelliJ, the non-running emulators appear just fine. You can start them without leaving IntelliJ.

enter image description here

  • Related