0% found this document useful (0 votes)
94 views3 pages

Flutter Moblie App Development System and Software Requirements

This document outlines the system requirements for developing applications using Flutter and Android Studio, including minimum and recommended specifications for operating systems, hardware, and software. It provides a step-by-step guide for installing the Flutter SDK, setting environment variables, installing Android Studio, and configuring it for Flutter development. Additionally, it emphasizes the need for an internet connection during the first-time setup to download necessary components.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
94 views3 pages

Flutter Moblie App Development System and Software Requirements

This document outlines the system requirements for developing applications using Flutter and Android Studio, including minimum and recommended specifications for operating systems, hardware, and software. It provides a step-by-step guide for installing the Flutter SDK, setting environment variables, installing Android Studio, and configuring it for Flutter development. Additionally, it emphasizes the need for an internet connection during the first-time setup to download necessary components.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

System Requirements to develop applications using flutter and android studio

Operating System

Platform Minimum Requirement

Windows Windows 10 or later (64-bit)

macOS macOS 12 (Monterey) or later (for iOS development)

Linux Any modern 64-bit distribution

Hardware Requirements

Component Minimum Recommended

RAM 8 GB 16 GB or more

Disk Space 5 GB (for Flutter SDK & Android Studio) + space for Android Emulator

Processor Intel i5 or equivalent (64-bit CPU) Intel i7 or Apple Silicon for macOS

Graphics OpenGL 2.0 capable GPU OpenGL 3.2+ for better performance

Software Requirements

🟦 For Flutter

https://flutter.dev/docs/get-started/install

Flutter SDK (download from flutter.dev)

Dart SDK (comes bundled with Flutter)

🟦 For Android Studio

Latest Android Studio

https://developer.android.com/studio

Android SDK

Android Emulator or a physical device

Android SDK Platform tools

Java JDK (Android Studio includes OpenJDK)

Required Android API (e.g., API 33 or 34)


Steps to Install and making flutter setup to build mobile application using android studio:

Step 1: Download and Install Flutter SDK

Go to: https://flutter.dev/docs/get-started/install

Choose your operating system (Windows/macOS/Linux).

Download the Flutter SDK (usually as a .zip file).

Extract it to a suitable location (e.g., C:\flutter on Windows).

✅ Step 2: Set Environment Variable (Optional but recommended)

Add the Flutter SDK’s bin folder to your system's PATH environment variable.

Example: C:\flutter\bin

and also required below(cross check)

C:\Program Files\Git\bin

C:\Program Files\Git\cmd

C:\Windows\System32

C:\Windows\SysWOW64\WindowsPowerShell\v1.0

C:\flutter\src\flutter\bin (if flutter is extracted in this path or else not required)

Step 3: Install Android Studio

Download from: https://developer.android.com/studio

During setup, make sure to install:

Android SDK

Android Emulator

Android Virtual Device (AVD)


Step 4: Install Flutter and Dart Plugins in Android Studio

Open Android Studio → Go to Plugins (under Settings or Preferences)

Search and install:

Flutter

Dart

Restart Android Studio after plugin installation.

Step 5: Run flutter doctor command in command prompt( to check whether flutter installed or not)

Step 6: Configuration – Android Studio with Flutter

which is used to setup and development android apps using dart language

flutter sdk path:

C:\flutter\src\flutter

dart sdk path:

C:\flutter\src\flutter\bin\cache

Note: These paths are from my machine

Step 7: Close and Re-Open the Android Studio to create New flutter Project

Step 8:

Create an AVD (Android Virtual Device) with that system image.

Step 9: Run the application using selected AVD/Emulator

Note: To run the application need internet because it will download the ndk(native development kit)
to run the emulator chosen

Note: It takes lot of time first time configuration

You might also like