Hi,
I’m building a mobile application with FlutterFlow connected to Firebase (Auth, Firestore, Cloud Functions).
My app is working correctly for:
user authentication
user documents creation
events and other Firestore collections
However, I’m having an issue with Push Notifications (FCM).
When a new user is created:
the Firebase Auth user is created correctly
the Firestore
users/{uid}document is createdbut the FCM token is never stored
the
users/{uid}/fcm_tokenssubcollection is not created
In Android Studio logs, I see errors related to:
App Check token not being retrieved
Cloud Function
addFcmTokenCodefailingsometimes returning
unauthenticated
This seems to block the automatic FlutterFlow logic that should save the FCM token on signup.