Flutter and Java JDK Setup Guide
For a complete guide on setting up Flutter and Java JDK, please refer to our official documentation: Flutter & Java JDK Setup Guide
Setup JDK in your system
-
If your System already has Java JDK 22 installed then you can skip this step.
-
Download Java JDK 22 by clicking this link: JAVA JDK
-
Download Java JDK 22 for your version 32 bit or JDK download 64 bit.
-
Please prefer video tutorials, we recommend this playlist for setting environment variables for Java in Windows 10: Java Environment Setup in Windows 10
-
Please prefer video tutorials, we recommend this playlist for setting environment variables for Java in Windows 11: Java Environment Setup in Windows 11
Setup Flutter SDK
-
Download Flutter SDK version 3.32.2 (stable channel) from the official Flutter website: Flutter SDK Downloads
-
After downloading, extract the Flutter SDK to your desired location.
-
Add Flutter to your system PATH:
- For Windows: Add the Flutter bin directory to your system's PATH variable
- For macOS/Linux: Add export PATH="$PATH:[PATH_TO_FLUTTER_SDK]/bin" to your shell's rc file
-
Run the following command to verify the installation:
flutter --version