1,377 questions
0
votes
1
answer
38
views
How to integrate @react-native-firebase/messaging with Expo managed workflow without errors?
I am developing an Expo app and want to implement push notifications with images. Unfortunately, expo-notifications does not support images in push notifications, so I want to use @react-native-...
0
votes
0
answers
27
views
Why am I getting a warning when I used the analytics().setAnalyticsCollectionEnabled
I have migrated to react-native-firebase 22.2.1. I am using Expo SDK 53 and React Native 0.79.6. I import the packages as below:
import analytics from "@react-native-firebase/analytics";
...
0
votes
1
answer
60
views
React Native Expo App: Firebase Cloud function Call Error: Could not connect to the server
I'm using "@react-native-firebase/firestore": "^23.1.1",
"@react-native-firebase/functions": "23.1.1"
"@react-native-firebase/app": "^23.1.1"...
1
vote
1
answer
190
views
Build failed: "GoogleService-Info.plist" is missing, make sure that the file exists
I'm getting this error while trying to run my Expo EAS Cloud build for my React Native app with Expo:
Build failed: "GoogleService-Info.plist" is missing, make sure that the file exists.
...
1
vote
1
answer
142
views
Sign in with Apple throws Apple Sign-In Error: [The operation couldn’t be completed (com.apple.AuthenticationServices.AuthorizationError error 1000.)]
I am trying to implement Signin with Apple using RNFirebase. I have exactly followed the the steps mentioned here but it is always giving me the following error
ERROR Apple Sign-In Error: [Error: ...
1
vote
1
answer
78
views
FCM: I don't understand "An application instance cannot be subscribed to more than 2000 topics."
I'm implementing notifications with Firebase Cloud Messaging (FCM) using NodeJs on the server of the company where I work using "firebase-admin" and @react-native-firebase/messaging at Expo.
...
0
votes
1
answer
69
views
How to upload a new application as a replacement to another application on playstore
We had a mobile app on playstore, which was built via react native cli. But now in order to improve the application. We have built an entirely new application with Expo managed workflow, along with ...
0
votes
0
answers
27
views
React-Native Firebase push notifications deep link click issue
For some reason even though my payload sends the "data" in the correct place and format, as soon as it gets to xcode, it get "stripped" and moved to the top level, so any click ...
0
votes
1
answer
154
views
React native app upgrade from 0.69.12 to 0.76.3
I have upgraded a React Native application from
react-native - 0.69.12 > 0.76.3
I have also upgraded all the 3rd party libraries that the app used and got rid of the ones that were deprecated and ...
0
votes
1
answer
368
views
push notifications messaging().getInitialNotification() shows remoteMessage always NULL and messaging().onNotificationOpenedApp never triggered
I’m using React Native 0.71 with @react-native-firebase/messaging alongside react-native-push-notification to handle push notifications in my app for android.
The notifications are data-only, and have ...
0
votes
1
answer
830
views
Getting deprecation warning using Firebase/Cloud Messaging in react native
I created a new React Native project and I'm using rnfirebase.io Cloud Messaging. The documentation says to use it like in this example and that's how I'm using it: Doc
But I have warning message in ...
1
vote
1
answer
475
views
Push Notification IOS Setup in React Native Latest Version 0.77.0
App.js:296 Error in token retrieval: NativeFirebaseError: [messaging/unknown] The operation couldn’t be completed. No APNS token specified before fetching FCM Token
Getting Error while fetching FCM ...
3
votes
0
answers
124
views
React Native Firebase Auth - signInWithPhoneNumber gives auth/internal-error
I am using React Native Firebase Auth in my project with only sign up/in with phone number.
When using my test phone number everything is working correctly. But as soon as I use a different phone ...
3
votes
4
answers
10k
views
Getting deprecation warning using firebase in react native
I am using firebase in my react native project for authentication and getting this warning even after updating my code according to modular api -
This method is deprecated (as well as all React ...
1
vote
1
answer
96
views
How to use react-native-firebase auth emulation?
im using react-native-firebase v21.6.1 and im trying to start the auth service emulation. Ive gotten the firestore and functions emulation working.
firebase.json
"emulators": {
"...
0
votes
1
answer
125
views
INVALID_CREDENTIAL_OR_PROVIDER_ID with signInWithCredential and Google OAuth
I am using this code for signing in with @react-native-google-signin/google-signin on my expo react native app
async function onGoogleButtonPress() {
try {
// Start Google Sign-In process
...
0
votes
0
answers
44
views
Notifications have stopped working on iOS - react native
All of a sudden notifications have stopped working on iOS. the logs on the Xcode console are showing two warning:
2024-12-31 19:23:31.439656+0500 trivialapp[31127:217995] 10.3.0 - [FirebaseCore][I-...
0
votes
0
answers
35
views
react native app crash in receiving firebase push notification
When I'm receiving FCM (Firebase Cloud Messages) on my emulator device it's showing this error and App crashed in build not in local. Started happening recently when I upgraded to react native version ...
0
votes
0
answers
102
views
React Native Firebase app compiling but refusing to run after adding firebase packages
Relatively new to react native development so bear with my ignorance. Just started to add react native firebase to my RN project (with expo router) to add authentication through email and through ...
0
votes
2
answers
236
views
React native android expo https requests showing network error
i am a react js developer trying to make and deploy an react native app, using expo cli, i am pretty much done but expo eas cli android apk is showing network error , it is working in web version but ...
0
votes
1
answer
56
views
Turn off sending verificaiton email when creating user
I am using firebase authentication in my react-native app developing.
When I create user using firebase authentication, firebase sends verification email automatically.
But I want firebase not to send ...
1
vote
0
answers
107
views
How to handle notification quick actions clicks on android on background/killed states
basically the situation is i receive a ( data-only ) remote message and then push a local notification and add actions to it, but when it comes to handling em in background and quit state, i click the ...
0
votes
1
answer
159
views
What to use piechart in React native 0.74 version
I want to use piechart in React my react native version 0.74 earlier I was using 0.63 and reactnnative piechart package was working fine so now I installed react native gifted charts for the same but ...
2
votes
2
answers
469
views
How to Switch Between Multiple Firestore Databases in the same firebase app
My Firebase project contains multiple Firestore databases, and I need to switch between these databases in my code.
const response = await firestore().collection(collectionId).doc(savedId).get().then((...
0
votes
0
answers
97
views
Firebase Console showing no data for android app
I have added Firebase analytics to my app where I log the events using analytics library. The code for same is
analytics().logEvent('channel_opened');
But the problem is that the app does not shows ...