Reputation: 641
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.
Also here is the screenshot of the flutter doctor
Any help is welcome.
Upvotes: 3
Views: 2886
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
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