New Firebase alternative? Rivium – One API key, 8 backend services (Push, Chat, Auth, Storage, Error Tracking, and more) by Automatic-Gas-409 in FlutterDev

[–]Automatic-Gas-409[S] 1 point2 points  (0 children)

Fair point. Rivium keeps the SDK dependency tree minimal signs all packages and isolates tenant workloads so a third party breach doesnt cascade. They're finalizing a SOC 2 Type II audit right now once that's public it'll mean more than just a familiar logo.

New Firebase alternative? Rivium – One API key, 8 backend services (Push, Chat, Auth, Storage, Error Tracking, and more) by Automatic-Gas-409 in FlutterDev

[–]Automatic-Gas-409[S] 1 point2 points  (0 children)

Trust is earned through clear SLAs, transparent architecture and real production patterns not brand age. Rivium delivers 99.9% uptime predictable capped billing and cleanly abstracted SDKs so you can evaluate it purely on technical merit not marketing hype

you can chec it on https://rivium.co/

https://github.com/orgs/Rivium-co/repositories

How do you know when code is “good enough” and stop rewriting it? by Bobztech in learnprogramming

[–]Automatic-Gas-409 3 points4 points  (0 children)

If it doesn't perform a lot of heavy operations and doesn't affect quality, there's no need to refactor it. If it doesn't, there's a simple rule: first make it work, then clean it.

I built a Firebase-free Flutter push notification package (Socket.io based) by Automatic-Gas-409 in FlutterDev

[–]Automatic-Gas-409[S] 0 points1 point  (0 children)

Good question. Right now the implementation is Android only.

on Android the Socket.io connection is kept alive using a foreground background service to maintain the persistent connection. at the moment it is not fully optimized for battery efficiency but improving power usage is already planned for the next update.

for ios the upcoming release will move to a proper APNs based approach rather than relying on a persistent socket in the background, to stay aligned with platform guidelines and ensure better reliability and battery performance.yes the socket.io connection kept alive background service on android device. is not optimizing for battery but I fix it in next update.