Reputation:
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
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
Upvotes: 1
Reputation: 3152
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
select Project
from left tab and select <No SDK>
build gradle
correctly doneflutter doctor
to check if devices are connectedUpvotes: 1