StylemixThemes Docs
WebsiteThemeforestYouTube Tutorials
MasterStudy App Documentation
MasterStudy App Documentation
  • Introduction
  • MasterStudy LMS API Plugin Setup
  • Flutter Environment
  • Android App Build on macOS
    • Flutter Setup for the macOS system
    • Android Studio Setup on mac
    • Android Studio Emulator on mac
    • Null safety setup
    • Installing Flutter Packages on mac
    • Setting the Site URL on mac
    • Adding App Icon on mac
    • Setting App Name on mac
    • Firebase on mac
    • Firebase Project Setup
    • Change Package Name
    • Test Your App on mac
    • App Release on mac
  • iOS App Build
    • Building App for iOS
    • Firebase for iOS
  • Google And Facebook Sign-In
    • Google Sign-In
    • Facebook Sign-In
  • Android App Build on Windows OS
    • Flutter Setup for Windows System
    • Android studio Setup on Windows
    • Android Studio Emulator on Windows
    • Null safety setup
    • Installing Flutter Packages on Windows
    • Setting the Site URL on Windows
    • Adding App Icon on Windows
    • Firebase on Windows
    • Firebase Project Setup
    • Change Package Name
    • Setting App Name on Windows
    • Test Your App on Windows
    • App Release on Windows
  • Extra Materials
    • Item Page
    • Changelog
  • stylemixthemes
  • Themes
  • Plugins
Powered by GitBook

©️ 2025 StylemixThemes

On this page
  • Flutter Installation
  • Setting the Flutter tool path

Was this helpful?

  1. Android App Build on macOS

Flutter Setup for the macOS system

PreviousFlutter EnvironmentNextAndroid Studio Setup on mac

Last updated 2 years ago

Was this helpful?

Flutter Installation

First, download the Flutter here: https://flutter.dev/docs/get-started/install/macos

Please note that this manual and all the steps described are applicable to the iOS app building process.

You can watch the video tutorial describing the full process of Android app building on macOS.

Or you can follow the instructions and steps described in this manual.

When you created the folder with Flutter SDK, open it in Terminal using the following command:

cd ~/development

If there is no development folder run this command first:

mkdir /development

After that, you need to run the unzip command. Make sure you specify the correct path to the downloaded Flutter archive file. Run the command below:

unzip ~/Downloads/flutter_macos_3.0.0-stable.zip

Setting the Flutter tool path

In order to set up the Flutter tool path you should run this command:

export PATH="$PATH:pwd/flutter/bin"

Next, you need to know which shell you are using. For this run this command:

echo $SHELL

Depending on the shell run the following command:

sudo nano ~/.zshrc

or

sudo nano /.bashrc

Again, the command you will be using depends on the shell you have.

After that in the new window, you need to add a path to the flutter tool.

Use the following command:

export PATH=$PATH:~/development/flutter/bin

The next thing you need to do is to check the Flutter dependencies.

For this, run the command:

flutter doctor

This operation will help you to identify if there are any dependencies you need to install. After the results will be prepared click Agree and wait for the installation of the needed dependencies to complete the setup.

The Flutter Doctor results will be displayed as follows:

Accept Android licenses. For this, run this command:

flutter doctor --android-licenses

To accept the licenses just type “y”

After you finished all the steps, the installation of Flutter SDK is complete. You can follow to the next step of building the app.