I am trying to run my first flutter app emulator, which is having complications at various level, I have tried too much but could not make through it, here is what I have tried.
On trying to click on Create Android Emulator in Visual studio code, the dart extension shows following:-
I don't know why it is happening as on checking, it is present:-
I would like to point out here that I am not able to understand what I have to put in flutter --android-sdk {path}
.
Also on running flutter doctor
, it shows the absence of visual studio despite the fact that I have it in place(that is why I could take the first screenshot). One thing I would like to point out here is that my vscode is in C drive while my flutter-test
folder(which contains everything related to flutter) is in D drive:
Please help so that I can further follow along to create an android app. Also ask if any further information is needed.
You need to know that having Android Studio Installed will solve the majority of issues caused.
STEPS:
C:\Program Files\Android\Android Studio\jbr
. Noticed I usedjbr
notjre
because with Android Studio Electric Eeljbr
replacedjre
.flutter doctor --android-licenses
WHAT DID WE DO ABOVE?
We cleaned our installation and downloaded the latest Flutter version which has Dart downloaded automatically. Next, we Installed Android Studio Electric Eel which has Java and Android settings in-build. This way we solve 99% of the problems here:
The last thing is to create an Emulator using Android Studio not VSC.
For future help, please comment below. Bye