📝
Flutterの開発環境を構築する
Flutterのインストール
- インストール
brew install flutter
Android Studio の設定
- インストール
brew install android-studio
- Configure > Plugins から
Flutter
を検索してインストール - Configure > SDK Manager > SDK Tools から
Android SDK Command-line Tools
をインストール - Android SDKのライセンスを認証
flutter doctor --android-licenses
- 連携できたかチェック
flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 2.2.3, on macOS 11.4 20F71 darwin-arm, locale
ja-JP)
[✓] Android toolchain - develop for Android devices (Android SDK version
30.0.3)
XCode の設定
- cocoapodsを入れる
brew install cocoapods
- これは必要なのか?
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch
- XCodeのライセンスを認証
sudo xcodebuild -license
アプリ作成
flutter create {app名}
Chromeで実行
flutter run -d chrome
Discussion