How to import existing Flutter Project in Android Studio?

Tran Ngoc Tung
1 min readJun 27, 2019

--

Install the Flutter and Dart plugins

To install these:

  1. Start Android Studio.
  2. Open plugin preferences (Preferences > Plugins on macOS, File > Settings > Plugins on Windows & Linux).
  3. Select Browse repositories, select the Flutter plugin and click Install.
  4. Click Yes when prompted to install the Dart plugin.
  5. Click Restart when prompted.

https://flutter.io/get-started/editor/

After that :

“Open existing Android Studio Project”

“Open existing Android Studio Project”

HAVE DONE — — — — —

Otherwise, check if there is a local.properties file in your existing project (your_flutter_project/android/local.properties).
Some case it was missing, and after adding it manually , you could use the “Open existing Android Studio Project” correctly

local.properties file should contain something like this :
sdk.dir= [Android SDK Path]
flutter.sdk= [Flutter Path]
flutter.buildMode=debug

Happy coding — — —

How to import existing Flutter Project in Android Studio?

--

--