FlutterでFirestoreにアクセスして、
ログイン画面⇨ログインボタン⇨トップページ に遷移する際、以下のようなエラーが出ます。
そのためログインできません。
allow read write : if true; だけにしても同様のエラーが出ました。
エラー内容(ターミナル)
flutter: [cloud_firestore/permission-denied] The caller does not have permission to execute the specified operation.
Another exception was thrown: _BackgroundAnimationState#f2bf1(tickers: tracking 1 ticker) was disposed with an active Ticker.
FireStore
1rules_version = '2'; 2service cloud.firestore { 3 match /databases/{database}/documents { 4 match /{document=**} { 5 allow read, write: if request.auth != null; 6 } 7 match /user/{document=**}{ 8 allow read, create, update: if true; 9 } 10 match /app_store/store { 11 allow read: if true; 12 } 13 14 } 15}
あなたの回答
tips
プレビュー