Velvet Star Monitor

Standout celebrity highlights with iconic style.

updates

What is FirebaseApp? [closed]

Writer Olivia Zamora

I was implementing Firebase Storage in my app and in the documentation it mentioned initializing the Firebase Storage instance with a custom FirebaseApp, I was wondering what that is?

2 Answers

Firebase has its core package that initiates as a client app, this is often referred to as "FirebaseApp" for clarity reasons. This app instance also maintains a name to differentiate it from others since it is possible to manage multiple instances for different firebase projects.

When you initiate Firebase, it will ask for credentials to the project to connect to including its services endpoints for storage, firestore, and real-time database.

I think you mean custom Firebase App instance. It is just an added layer of security if you want to authenticate every new user that is logging in to your firebase enabled app.

Ref: