pubspec.yaml に以下の記述を追加して、ビルドした。
dependencies:
firebase_core: ^0.4.4+3
firebase_auth: ^0.15.5+2
cloud_firestore: ^0.13.4+2
すると、iOS Simulator で実行しようとした際にビルドエラーが発生。
# import <GoogleUtilities/GULSceneDelegateSwizzler.h>
Pods/FirebaseAuth/Firebase/Auth/Source/Auth/FIRAuth.m:32:9: 'GoogleUtilities/GULSceneDelegateSwizzler.h' file not found
以下のコマンドを実行
pod update
するとこんなエラーが。
Analyzing dependencies
[!] CocoaPods could not find compatible versions for pod "Flutter":
In Podfile:
Flutter (from `Flutter`)
sqflite (from `.symlinks/plugins/sqflite/ios`) was resolved to 0.0.1, which depends on
Flutter
Specs satisfying the `Flutter (from `Flutter`), Flutter` dependency were found, but they required a higher minimum deployment target.
Flutter をあげるために、deployment target を 11.4 に変更。
そして
flutter clean
これでiOS Simulatorで無事実行できた。

