Home > OS >  is there a way to add firebase project options within flutter app start
is there a way to add firebase project options within flutter app start

Time:07-05

i would simply to know how to add Firebase project options within the app because every client will have its own Firebase project on flutter android / ios if possible

CodePudding user response:

As long as the project has the google-services.json from the related Firebase Console Projects, then its connected.

You could simply perform it too with Firebase Console

CodePudding user response:

Since you can pass all configuration data to the call to Firebase.initializeApp, you can get those values from anywhere you like and pass them. So you can indeed request this information from your user's in some form, and pass it to Firebase after tht..

  • Related