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
Asked
Active
Viewed 1,876 times
2
-
I believe this [No devices connected](https://stackoverflow.com/questions/49045393/flutter-run-no-connected-devices) will help you – Seddiq Sorush Feb 25 '20 at 11:13
-
1Does this answer your question? [flutter run: No connected devices](https://stackoverflow.com/questions/49045393/flutter-run-no-connected-devices) – Jonathan Coustick Feb 25 '20 at 12:10
2 Answers
1
Mostly this happens when your Android SDK path is not configured. To do this you can do it as follow:
First of all make sure make sure you followed the installation process
Go to
File -> Project Structure
selectProject
from left tab and select<No SDK>
- Then from the devices list click on one of the AVDs to run
- Make sure your
build gradle
correctly done - Run
flutter doctor
to check if devices are connected - Run your project

Seddiq Sorush
- 2,709
- 2
- 20
- 20
-
Does it show the connected devices when you run `flutter doctor` in the terminal ? – Seddiq Sorush Feb 25 '20 at 11:31
-
-
-
I suggest go through the official installation process https://flutter.dev/docs/get-started/install/windows – Seddiq Sorush Feb 25 '20 at 11:46
0
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

Ray Chakrit
- 404
- 5
- 7