Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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??

like image 551
John Avatar asked Aug 28 '18 12:08

John


People also ask

Can I use flutter without installing Android Studio?

Whenever I start Android Studio, my PC Paralyse and become enemy of other application. That's why I found the solution of running flutter without installing Android studio, just do the following steps. So we keep everything in a single directory. Choose your directory where you want to install flutter.


1 Answers

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).

like image 172
Danny Tuppeny Avatar answered Sep 28 '22 18:09

Danny Tuppeny