user12751559
user12751559

Reputation:

No connected devices found; please connect a device

I just open my flutter project in android studio but android studio cannot detect any device. I already installed two emulator from AVD manager but still I face with this error

Upvotes: 2

Views: 3415

Answers (2)

Ray Chakrit
Ray Chakrit

Reputation: 480

I found that the old virtual devices created from the Kotlin projects can't be used with Flutter. You need to recreate a new one for it to appear in the toolbar drop menu like the image below

enter image description here

Upvotes: 1

Seddiq Sorush
Seddiq Sorush

Reputation: 3152

Mostly this happens when your Android SDK path is not configured. To do this you can do it as follow:

  1. First of all make sure make sure you followed the installation process

  2. Go to File -> Project Structure select Project from left tab and select <No SDK>

  3. Then from the devices list click on one of the AVDs to run enter image description here
  4. Make sure your build gradle correctly done
  5. Run flutter doctor to check if devices are connected
  6. Run your project

Upvotes: 1

Related Questions