Reputation: 778
I tried to develop app using Flutter(using Android studio IDE).Add flutter plugin & flutter SDK in studio and Everything is configured but emulator / real time device are not listed. Its shows error like "Unable to list devices: Unable to discover Android devices. Please run "flutter doctor" to diagnose potential issues"
Ref link : https://flutter.io/setup-windows/#android-setup
https://flutter.io/get-started/test-drive/#androidsstudio
Upvotes: 20
Views: 13643
Reputation: 6165
For mac users,
It was working fine yesterday. In my case I had this in .bash_profile
ANDROID_HOME = Library/Android/sdk
I changed it to,
ANDROID_HOME = /Users/rana.singh/Library/Android/sdk
.bash_profile has
export ANDROID_HOME=/Users/rana.singh/Library/Android/sdk
export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
It worked.
Upvotes: 0
Reputation: 1012
If you configure flutter and android sdk both perfectly and you do not show the avd device list in android studio.
It's very simple way to show android emulator device list.
First create a new Android Emulator if already create you run the AVD manager then you can show the instead of emulator name
Before: https://i.sstatic.net/6np0m.png
After: https://i.sstatic.net/fiCYe.png
Upvotes: 2
Reputation: 51
Had the same problem after moving avd's to another disk.
I managed to solve by making ANDROID_HOME
system variable to point to the android sdk path.
Upvotes: 0
Reputation: 1339
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
Upvotes: 65
Reputation: 22477
May be there is no AVD's to list down. And if emulator runnig, intelliJ will grab it.
In Android Studio, you can create a AVD using AVD Manager or using Terminal. Here is how you can do that using Terminal,
First, go to the android sdk installed directory -> tools
and copy the path and in the terminal type cd
and paste the path and press enter. Now yo are in the tools directory.
Next, using terminal type:
emulator -list-avds
- to list created AVD's(You should be in tools directory to run this command).
If there is a device type emulator -avd <name>
. else you can create a one:
type cd bin
then,
Use:
avdmanager create avd -n name -k "sdk_id" [-c {path|size}] [-f] [-p path]
As a example:
avdmanager create avd -n Nexus -d 23 -k system-images;android-23;google_apis;x86
Then again go back to tools directory by typing cd ..
and type emulator -list-avds
. This command will list your created AVD.
To run a AVD type:
emulator -avd <name>
About AVD.
Upvotes: 0