Android Question Firebase Setting

hanyelmehy

Active Member
Licensed User
Longtime User
can i load firebase setting (that found in google-services.json) at run time
i want to let user use his own firebase service for data storage
 

DonManfred

Expert
Licensed User
Longtime User
The google-services.json is used at compiletime to build the correct manifest for your app.

You can not load it at runtime. as it is not part of the app-installation on your device.
 
Upvote 1

DonManfred

Expert
Licensed User
Longtime User
i want to let user use his own firebase service for data storage
Can´t you just use their BucketID to access their storage?

From FirebaseStorage Example
B4X:
Private bucket As String = "gs://b4a-test1.appspot.com"
 
Last edited:
Upvote 0
Top