Favourite List
Nothing Added.

Install Flutter on Windows without Android Studio

SDK Toolchain Setup


After upgrading to Flutter 3.0++ , It's very complicated to setup Android SDK Toolchain. Neither Choco Package Manager nor Official Documentation working Properly. That's why I have collected Android SDK Toolchain , build tools, command line Tools, in a package that included JAVA 11.2.0. After unzipping it, you be able to setup toolchain easily. 
In this sort tutorial I am sharing the resource for setting up Android SDK and Flutter without Android Studio. 

Download Android SDK Resource

Android SDK

Android SDK Toolchain.rar

Size: 520MB

Password: None

Install Android SDK Toolchain

Extract Android.rar Folder using winRar to your system root directory.
  C:\
Then Install Java as normal any other software you Install.

Now Download Flutter and Extract it into Android Folder. It will be extracted like this hierarchy
  C:\Android\

Confirm Folder Hierarcy

All Files and Folder will Look Like This Hirecry Right?

Folder Hiercy


Setup Environment Variables

Open Power Shell and paste this commands one by one and Hit ENTER

$env:ANDROID_HOME = 'C:\Android\Sdk';

setx PATH "C:\Android\Sdk\cmdline-tools\latest\bin;C:\Android\Sdk\platforms;C:\Android\Sdk\platform-tools;C:\Android\Sdk\tools;C:\Android\flutter\bin;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Program Files\Java\jdk-11.0.14;"

setx PATH "C:\Android\Sdk\cmdline-tools\latest\bin;C:\Android\Sdk\platforms;C:\Android\Sdk\platform-tools;C:\Android\Sdk\tools;C:\Android\flutter\bin;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Program Files\Java\jdk-11.0.14;"

Powershell Screenshot:


Powershell



All Set. Restart your PC and you are ready to start coding  Flutter. Run flutter doctor and see the magic πŸ‘.
Happy Coding 😍

Watch Tutorial Here


Next Post Previous Post
Feels like
No Comment
Add Comment
comment url