H hanyelmehy Active Member Licensed User Longtime User Sep 12, 2021 #1 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
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 Sep 12, 2021 #2 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
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.
DonManfred Expert Licensed User Longtime User Sep 12, 2021 #3 hanyelmehy said: i want to let user use his own firebase service for data storage Click to expand... 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: Sep 12, 2021 Upvote 0
hanyelmehy said: i want to let user use his own firebase service for data storage Click to expand... Can´t you just use their BucketID to access their storage? From FirebaseStorage Example B4X: Private bucket As String = "gs://b4a-test1.appspot.com"