flutterのiosプロジェクトにFIrebaseを接続しようとしたところうまくできません。
Firebaseの公式ドキュメント(https://firebase.google.com/docs/flutter/setup?hl=ja)
の通りに
1.Firebaseプロジェクトの作成
2.バンドルIDの登録
3.GoogleService-Info.plistを取得して、XcodeのRunner/Runnerディレクトリに貼り付ける。
4.Firebaseのプラグインをpabspec.yamlに書き込み、pub getする(今回はfirebase_core: ^0.4.5とcloud_firestore: ^0.13.6を書きました)
を実行しました。
そしてflutter runをして、Firebaseをつなげようとした際に、pod installは成功したのですが、Xcodeのbuildが長時間かかった上に失敗してしまいました。
以下にエラーの内容の一部を書きます。
考えうる要因としてはダウンロードしたGoogleService-Info.plistに複数回ダウンロードしたことを意味する(3)の添字がついてしまっていることがあります。
先ほどのホームページには添字がないことを確認してくださいと書いてあるので、そこが原因かもしれません。
このエラーの解決方法が分かる方がいらっしゃれば答えていただけると幸いです。よろしくお願いいたします。
Launching lib/main.dart on iPhone SE (2nd generation) in debug mode...
Running pod install... 25.0s
Running Xcode build...
Xcode build done. 166.4s
Failed to build iOS app
Error output from Xcode build:
↳
** BUILD FAILED **
Xcode's output:
error: unknown type name 'FIRFirestore'
static FIRFirestore *getFirestore(NSDictionary *arguments)
error: use of undeclared identifier 'FIRFirestore'
return [FIRFirestore firestoreForApp:app];
error: unknown type name 'FIRDocumentReference'
static FIRDocumentReference *getDocumentReference(NSDictionary *arguments) {
^
あなたの回答
tips
プレビュー