- MacOS (10.13.4)
- Android Studio (ver.3.1.2) has been installed
# install Dart SDK
$ brew tap dart-lang/dart
$ brew install dart
# install Flutter SDK
# download zip file from web: https://flutter.io/docs/get-started/install/macos#set-up-your-android-device
$ cd ~/Library
$ unzip ~/Downloads/flutter_macos_v0.11.12-beta.zip
$ export PATH=$PATH:`pwd`/flutter/bin
$ flutter doctor
- clone new Flutter repository
- launch Android Studio and add new Project (
File
>Open...
) - install plugins (
Preferences
>Plugins
>Browse repositories...
) - add Dart & Flutter SDK path (
Preferences
>Languages & Frameworks
)
Because hermes depends on flutter_test any from sdk which doesn't exist (the Flutter SDK is not available), version solving failed.
Flutter users should run `flutter packages get` instead of `pub get`.
:thinking_face: