Install Flutter on Windows without Android Studio
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 Toolchain.rar
Size: 520MBPassword: 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?
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:
Happy Coding π