John
John

Reputation: 2761

How do I install a flutter in VS code with an emulator without Android Studio?

Though I have been working on Android studio for flutter as a new bee, now I am thinking to move in VScode and want to use blue stake like an emulator. Now I want to know is there any way of developing flutter in VScode without installing android studio??

Upvotes: 7

Views: 13556

Answers (2)

Danny Tuppeny
Danny Tuppeny

Reputation: 42333

Right now, installing Android Studio is the supported way to get all the bits you need:

https://flutter.io/setup-windows/#system-requirements

Flutter relies on a full installation of Android Studio to supply its Android platform dependencies. However, you can write your Flutter apps in a number of editors; a later step will discuss that.

It is possible to make things work without (by installing bits of the SDK, Gradle, etc. manually, and ensuring they're on PATH or in relevant env variables) but it's more complicated. I (the author of the Dart/Flutter VS Code plugins) used to run without Android Studio but things like upgrading the Android SDK are much simpler with Android Studio (as far as I can tell, the GUI for updating the SDK was seemingly moved from the SDK into Android Studio).

Upvotes: 5

Dhrumil Shah - dhuma1981
Dhrumil Shah - dhuma1981

Reputation: 15789

I haven't tried this. But you can download the SDK individually without downloading the Android Studio.

Here is the link: https://developer.android.com/studio/ Go to

Command line tools only

section and Download the respected version according to your OS.

Upvotes: 1

Related Questions