Gaurav A Dubey
Gaurav A Dubey

Reputation: 641

Flutter with Android Studio does not show Device List

Installing Flutter with Android Studio does not show me the device list that I am expecting. When inspecting the same using the flutter devices it shows me results but not in the Android studio device list. Can anyone please tell me the solution. Adding some screenshot regarding the same.

enter image description here

Also here is the screenshot of the flutter doctor

enter image description here

Any help is welcome.

Upvotes: 3

Views: 2886

Answers (2)

drmirk
drmirk

Reputation: 473

Configure flutter in terminal to detect Android SDK and Android Studio:

$ flutter config --android-sdk /path/to/android/sdk
$ flutter config --android-studio-dir /path/to/android/studio

Then restart Android Studio/Intellij. source: https://github.com/flutter/flutter-intellij/issues/2113#issuecomment-383412308

Original answer: https://stackoverflow.com/a/50019226/3879756

Upvotes: 3

Günter Zöchbauer
Günter Zöchbauer

Reputation: 657048

Restarting the computer should fix that.

If you want to avoid restarting, you can also use

adb --kill-server 
killall -9 dart

to killing all dart processes (they will be re-started on demand anyway)

Upvotes: 4

Related Questions