react-native-firebase
react-native-firebase copied to clipboard
🔥 A well-tested feature-rich modular Firebase implementation for React Native. Supports both iOS & Android platforms for all Firebase services.
## Issue I have recently upgraded my project from v18.9.0 to 21.12.0 (also affects 21.10.0), and it appears that for iOS release variants only, the following crash is occurring when...
## Issue Currently having issues sending a password reset email when the continue URL is included. When a whitelisted URL is included in the `actionCodeSettings` object firebase returns an `auth/internal-error`....
When using `signInWithCredential`, there doesn't appear to be a way to pass in the raw nonce, which is required if you're using an id token that contains a nonce: https://firebase.google.com/docs/reference/kotlin/com/google/firebase/auth/OAuthProvider.CredentialBuilder#setIdTokenWithRawNonce(java.lang.String,java.lang.String)...
### Description Root collections currently allow strong typing: ```typescript const allYourBase = firestore() .collection("are-belong") .get(); ``` But subcollections cannot be typed: ```typescript const allYourBase = firestore() .collection("are-belong") .doc("8675309") .collection("to-us") //...
The upstream SDKs for iOS, Android and web allow you to get the user, additional user info, the access token and the ID token after doing an OpenID Connect sign-in....
### Discussed in https://github.com/invertase/react-native-firebase/discussions/8124 Originally posted by **cSieves** November 10, 2024 Hi, I was wondering if there are any plans to allow a user to specify where to get the...
## PR adding New Architecture support to the library :tada: We at [Software Mansion](https://swmansion.com/) have been working on [improving support](https://blog.swmansion.com/sunrising-new-architecture-in-the-new-expensify-app-729d237a02f5) for the new architecture for quite a while now. If...
We're moving RNFB API to match Firebase web JS SDK API, some API are currently asynchronous when they should be synchronous to match Firebase web JS SDK API. For example,...