How to work with Firebase Storage offline?

0

I've been studying the features of Storage and Firebase RealTime Database. In the case of RealTime DB, you can enable data persistence while offline by setPersistenceEnabled() . Now you wanted to know how I do something like this in Storage? I need to save and provide references and media after uploading even when offline.

Note: this is my first question in stackoverflow. If the structure of the question is wrong, give me some help to improve!

    
asked by anonymous 08.10.2018 / 16:31

1 answer

0

Unfortunately, the Firebase Storage SDK still does not offer this feature. But nothing prevents you from implementing your own solution to persist files locally while the device is offline.

    
08.10.2018 / 23:04