Flutter with Android Studio does not show Device List

2,227

Solution 1

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)

Solution 2

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

Share:
2,227
Gaurav A Dubey
Author by

Gaurav A Dubey

Student and currently doing masters in IT. Eager to learn, develop and contribute to open source. :)

Updated on December 05, 2022

Comments

  • Gaurav A Dubey
    Gaurav A Dubey over 1 year

    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.

  • Fawwaz Yusran
    Fawwaz Yusran about 5 years
    I sometimes forgot that turning it off and turning it back on again is the best solution.