How to set up devices for Visual Studio Code for a Flutter emulator

Visual Studio-CodeDartFlutter

Visual Studio-Code Problem Overview


I'd like to use Visual Studio Code as my editor for Flutter development, but I don't know how to get the emulator going. I've installed Visual Studio Code on Ubuntu 17.10 (Artful Aardvark).

I followed the first half of instructions as outlined on the Flutter: Get Started page (Create new app). Then I ran into trouble in the second half:

>Run the app > > 1. Make sure a target device is selected in the lower, right-hand corner of VS Code > 2. Press the F5 button on the keyboard, or invoke Debug>Start Debugging > 3. Wait for the app to launch > 4. If everything works, after the app has been built, you should see your starter app on your device or simulator:

The problem is that in that bottom right-hand corner is "No Devices."

How do I connect a device? I can't seem to find instructions anywhere.

Visual Studio-Code Solutions


Solution 1 - Visual Studio-Code

From version 2.13.0 of Dart Code, emulators can be launched directly from within Visual Studio Code, but this feature relies on support from the Flutter tools which means it will only show emulators when using a very recent Flutter SDK. Flutter’s master channel already has this change, but it may take a little longer to filter through to the development and beta channels.

I tested this feature, and it worked very well on Flutter version 0.5.6-pre.61 (master channel).

Enter image description here

Solution 2 - Visual Studio-Code

Do Ctrl + Shift + P

Then type Flutter:launch emulator

or

run this command in your Visual Studio Code terminal flutter emulators then see the result if you have installed any emulator it will show you. Then to run one of them, use flutter emulators --launch your_emulator_id in my case flutter emulators --launch Nexus 6 API 28

But if you haven't installed any emulator you can install one with flutter emulators --create [--name xyz], and then run your project flutter run inside the root directory of the project.

Solution 3 - Visual Studio-Code

You do not need Android Studio to create or run a virtual device. Just use sdkmanager and avdmanager from the Android SDK tools.

Use the sdkmanager to download a system image of Android for x86 system. E.g., sdkmanager "system-images;android-21;default;x86_64"

Then create a new virtual device using avdmanager. e.g., avdmanager create avd --name AndroidDevice01 --package "system-images;android-21;default;x86_64"

Then run the new virtual device using emulator. If you don't have it just install it using the sdkmanager. E.g., emulator -avd AndroidDevice01

If you restart Visual Studio Code and load your Flutter project. The new device should show up at the bottom right of the footer.

Solution 4 - Visual Studio-Code

For those people using a Mac you can go to your terminal and type

$ open -a Simulator.app

and this command will open the simulator.

After that, just go to the Debug option and tap on "Start Debugging"

enter image description here

If you want to test with an Android Emulator:

What I did was to go first to Android Studio and open a virtual Device with AVD Manager. After that you'll see another devices in your Visual Studio Code

enter image description here

In the bottom right you'll see now that you have 2 devices connected. Now, you can test with any of this devices.

Solution 5 - Visual Studio-Code

You can connect an Android phone via a USB cable and then it will show the device in the bottom bar. (Please note ADB must be installed. Click here for more.)

Or you can completely install Android Studio and set up the emulator from there and run the emulator. Then Visual Studio Code will recognise the emulator and show it at the bottom bar.

Solution 6 - Visual Studio-Code

Visual Studio Code needs to know where Android SDK is installed on your system. On Windows, set the "ANDROID_SDK_ROOT" environment variable to the Android SDK root folder.

Plus: Always check the "OUTPUT" and "DEBUG CONSOLE" tabs for errors and information.

Solution 7 - Visual Studio-Code

Do Ctrl + Shift + P

Type- Flutter:launch emulator

Solution 8 - Visual Studio-Code

You can use the 'Android iOS Emulator' plugin and add the Android Studio emulator script to your settings in Visual Studio Code:

> Mac: emulator.emulatorPath": "~/Library/Android/sdk/tools/emulator

> Windows: emulator.emulatorPath": "<your android home>\\Sdk\\emulator\\emulator.exe

> Linux: emulator.emulatorPath": "~/Documents/SDK/tools

Your Visual Studio Code settings are found here: Menu FilePreferencesSettingUser SettingExtensionsEmulator Configuration. Open command palette, Cmd + Shift + P → type "Emulator"

Solution 9 - Visual Studio-Code

You can see the bottom menu in VScode, click on this button and you will able to see all the available devices.

VScode

Solution 10 - Visual Studio-Code

First, you have to install Android Studio and Xcode to create a phone emulator.

In Visual Studio Code you can use the Android iOS Emulator plugin to set the path of emulator to run.

Solution 11 - Visual Studio-Code

The following steps were done:

  1. installed Genymotion
  2. configured a device and ran it
  3. in Visual Studio Code, lower right corner, the device shows

Solution 12 - Visual Studio-Code

Alternatively, if you enable developer mode and (ADB) is still needed, you can use connect to the device.

To enable developer mode, you go to Phone SettingsAbout Phone → tap buildnumber seven times.

Once you have it enabled and have the device connected, you can start seeing the device in Visual Studio Code.

Solution 13 - Visual Studio-Code

Set "ANDROID_SDK_ROOT" in environment variables. This solved my problem.

Solution 14 - Visual Studio-Code

For me, when I was running the "flutter doctor" command from the Ubuntu command line - it showed me the below error.

> [✗] Android toolchain - develop for Android devices > ✗ Unable to locate Android SDK.

From this error, it is obvious that "flutter doctor" was not able to find the "Android SDK" and the reason for that was my Android SDK was downloaded in a custom location on my Ubuntu machine.

So we must need to tell "flutter doctor" about this custom Android location, using the below command,

flutter config --android-sdk /home/myhome/Downloads/softwares/android-sdk/

You need to replace /home/myhome/Downloads/softwares/android-sdk/ with the path to your custom location/place where the Android SDK is available.

Once this is done, rerun "flutter doctor" and now it has detected the Android SDK location and hence I could run avd/emulator by typing "flutter run".

Solution 15 - Visual Studio-Code

To select a device you must first start both, Android Studio and your virtual device. Then Visual Studio Code will display that virtual device as an option.

Solution 16 - Visual Studio-Code

You do not need to create a virtual device using Android Studio. You can use your Android device running on Android 8.1 (Oreo) or higher. All you have to do is to activate developer settings, then enable USB DEBUGGING in the developer settings.

Your device will show at the bottom right side of Visual Studio Code. Without enabling the USB debugging, the device may not show.

Enter image description here

Solution 17 - Visual Studio-Code

Press ctrl+shift+p and choose flutter: Launch emulator.

Solution 18 - Visual Studio-Code

Recently I switched from Windows 10 home to Elementary OS. Visual Studio Code didn't start from Ctrl + Shift + P.

Launch the emulator instead of that. I just clicked the bottom in the right corner no device → Start emulator. It worked fine.

Solution 19 - Visual Studio-Code

Genymotion settings -> Select ADB Tab -> Select

> Use custom Android SDK tools -> Add Android SDK Path (Ex: C:\Users\randika\AppData\Local\Android\sdk)

Genymotion Settings View

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionCharles Thomas InglesView Question on Stackoverflow
Solution 1 - Visual Studio-CodeSaeed ZarinfamView Answer on Stackoverflow
Solution 2 - Visual Studio-Codeart_csView Answer on Stackoverflow
Solution 3 - Visual Studio-CodeDonny V.View Answer on Stackoverflow
Solution 4 - Visual Studio-CodeJorge CasariegoView Answer on Stackoverflow
Solution 5 - Visual Studio-CodeAawaz GyawaliView Answer on Stackoverflow
Solution 6 - Visual Studio-CodeStevenView Answer on Stackoverflow
Solution 7 - Visual Studio-CodeTanvir AhmedView Answer on Stackoverflow
Solution 8 - Visual Studio-Codedev001View Answer on Stackoverflow
Solution 9 - Visual Studio-CodeUmer Waqas CEO FluttydevView Answer on Stackoverflow
Solution 10 - Visual Studio-Codesos418View Answer on Stackoverflow
Solution 11 - Visual Studio-CodeChiranjeebView Answer on Stackoverflow
Solution 12 - Visual Studio-CodeVijay aravindView Answer on Stackoverflow
Solution 13 - Visual Studio-CodealirezaView Answer on Stackoverflow
Solution 14 - Visual Studio-CodeAADProgrammingView Answer on Stackoverflow
Solution 15 - Visual Studio-CodeOmarView Answer on Stackoverflow
Solution 16 - Visual Studio-CodeOscar KaraniView Answer on Stackoverflow
Solution 17 - Visual Studio-CodeK_ChandioView Answer on Stackoverflow
Solution 18 - Visual Studio-CodeEngineSenseView Answer on Stackoverflow
Solution 19 - Visual Studio-CodeLahiru LiyanageView Answer on Stackoverflow