Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to give Flutter SDK Path in Android Studio on Mac os

I have installed the Android studio and the plugin's DART,FLUTTER to kickstart the flutter but as i am not able to give path of sdk while creating my very first project for flutter.

like image 897
Vrushali Raut Avatar asked Oct 16 '18 12:10

Vrushali Raut


People also ask

Where is Flutter sdk path Mac?

Add Flutter to your PATH First, we will find the path to our Flutter bin folder. The easiest way to do this is by using the terminal to navigate into the flutter/bin folder and use the pwd command to print the current working directory.

How Do You Get path of Flutter sdk?

Your Flutter SDK path should be a_better_place/flutter. These would be used in tools such as VSCode or Android Studio. Check your echo $PATH to point to the correct folder. Use export PATH=”$PATH:$HOME/flutter/bin” or whatever you need (and you can also include this into your ~/.


1 Answers

I tried to find out the solution did not got solution.. Finally this are the steps i have implemented and works for me. Prerequisites :-

  1. Install Android studio

  2. Install plugins to kick start flutter projects (DART,FLUTTER)

You can find out this inside android studio --> preferences --> Plugins

Now you have to setup Flutter SDK path to your Android studio

  1. Download the Flutter SDK

  2. Extract it where do you want (for example - /Users/vrushali/Downloads/flutter)

  3. Open your Android studio --> start a new Flutter Project --> select default application --> next --> select flutter sdk path --> browse to the . location where you have download and extract your flutter sdk --> select the flutter --> bin --> and say okay All set..! Your project will get created in some time :)
like image 124
Vrushali Raut Avatar answered Sep 28 '22 03:09

Vrushali Raut