Boardy
Boardy

Reputation: 36223

No AVD Available for Flutter Android Studio Project

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.

Android Studio Toolbar

Below is what I get when select the drop down for "No Device Selected"

Device Selection Dropdown

Below are the AVDs that I have should have available from the AVD Manager

AVD List

I've run the flutter doctor command followed by the flutter devices command which has the following output

Flutter doctor and flutter devices output

Android Studio and the Android SDK is fully up to date

Upvotes: 3

Views: 1276

Answers (1)

Onik
Onik

Reputation: 19959

You need to configure Android SDK using Project Structure settings:

enter image description here

Now Android Emulator(s) should be available from the Devices dropdown menu:

enter image description here

Upvotes: 5

Related Questions