Reputation: 36223
I am trying to learn Flutter so following the getting started guides and hit a hurdle pretty much straight away, and so far what I've found on Google doesn't seem related to my issue.
I have installed the Flutter plugins for Android Studio and created a new Flutter application project. Android Studio loads the project fine but I can't run it as it says there are no devices available except for Edge or Chrome instead of an AVD (Android Virtual Device) being listed.
Below is what I see on the toolbar of Android Studio.
Below is what I get when select the drop down for "No Device Selected"
Below are the AVDs that I have should have available from the AVD Manager
I've run the flutter doctor
command followed by the flutter devices
command which has the following output
Android Studio and the Android SDK is fully up to date
Upvotes: 3
Views: 1276
Reputation: 19959
You need to configure Android SDK using Project Structure settings:
Now Android Emulator(s) should be available from the Devices dropdown menu:
Upvotes: 5