hamburger-tech-nits

主にプログラミングのNITSな話

Firebase

Firebase App DIstributionの招待リンク機能

AppDistributionの招待用URLにはグループを設定できる。 てっきりアプリに対してグループで制限をつけたURLが発行されると思っていたがそうではないらしいということを知った。 つまり、以下のようにURLごとにタップできるグループとインストールできるアプ…

`[cloud_firestore/failed-precondition] Operation was rejected because the system is not in a state required for the operation's execution. If performing a query, ensure it has been indexed via the Firebase console`

FlutterでFirestoreのcollection_groupにwhere条件を設定したクエリを実行したところ、[cloud_firestore/failed-precondition] Operation was rejected because the system is not in a state required for the operation's execution. If performing a quer…

FlutterのCloud Firestore ODMを活用して型安全なリクエストを実行する

Flutterで一般的な使い方でFirestoreにアクセスしようとすると、ドキュメント名やレスポンスを文字列でマッチングする必要があるため、型情報の復元のためのコードを色々書く必要がある。 Cloud Firestore ODMはその名の通りObject Document Mapperで、これ…

Flutterアプリでfirebase_ui_authを使ってGoogleログインを実装する

この記事の続き hamburger-tech.hatenablog.com 参照先のページに別のページのリンクが書いてあり、少し紛らわしかった。ようやく一段落。 pub.dev github.com Googleログインを有効にする メールログインと同様にGoogleログインを有効にする。その後、必要…

Flutterアプリでfirebase_ui_authを使ってメールログインを追加する

事前準備 firebase.google.com Firebaseプロジェクトを作成し、アプリリポジトリを接続する。特にこだわりがなければ、firebase_analyticsを導入して動作確認するのがオススメ。 FirebaseAuthの準備 Firebaseのコンソールを開き、Authを有効にする。Authはロ…