Alternatives to Google Cloud Storage for Firebase?
Hi, I am building an app with Kotlin Compose Multiplatform (currently for Android & Desktop).
I am using Realm Kotlin for my database. There are multiple realm files.
The database is read-only for client side, it doesn't need sync feature.
Instead of bundling all realm files along with the app, I want the feature to download them on-demand from server.
I need something like Google Cloud Storage for Firebase, what are other free alternatives?
b
Ben Abramovitch
05/22/2024, 10:19 PM
You could use CloudFlares R2 which is cheaper and doesn't have egress fees. I ended up using them for hosting my images. Since I don't have a backend though I did have to use Firebase Cloud Functions to create a presigned url. Cloudflare has their own way to do that as well if you want to do your user accounts via them.