admin管理员组文章数量:1340291
I have made my React Native App with Expo and firebase and used realtime database in that.
Suddenly I started getting app crashes from the users and got to know that randomly users are getting error "Cannot read property 'sendRequest' of null" and app crashes and source is firebase.
I was using Firebase Realtime Database for a long time and this problem was occuring in the last 3 months. I have tried solving everything Google Searched, Gemini, ChatGPT, Claude, reading documentations beleive me everything and my startup is dependent on this.
Error occur when I export updateOnFirebase, createOnFirebase etc and use it in another files.
This error dont occur while I am in development mode, just occurs when I am in production mode after publishing app to Google Play Store ( presumably when internet is slightly weak )
I have made these kind of functions and exported them and used them in my entire app
Firebase version "firebase": "^9.23.0"
import { initializeApp } from "firebase/app";
import { getStorage } from "firebase/storage";
import { getDatabase } from "firebase/database";
import { ref, push, onValue, set, update, get, remove } from "firebase/database";
// Initialize Firebase, Done this way to not initialzie multiple times
const firebaseApp = initializeApp(firebaseConfig);
// Initializing Firebase services
export const db = getDatabase(firebaseApp);
// export const updateOnFirebase = async ({ updates }) => {
// try {
// await update(ref(db), updates);
// } catch (error) {
// handleError(error, "Error in updateOnFirebase", updates);
// }
// };
Updates I have found similar random bugs here which are very very related in Randomness
- Randomness Very related to this bug ->
All of these are Random and many predictions are there but no exact reproducible way unfortunately
版权声明:本文标题:RANDOM Error "Cannot read property 'sendRequest' of null" React Native Firebase - Stack Overfl 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743631458a2513177.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论