Quick question for the community. Curious how other Flutter devs handle this:
You ship a new feature. It passes review. Within hours, you see crashes in production for a specific device/OS combo.
Your options today:
Fix the bug, resubmit, wait 24+ hours for Apple. Users keep crashing.
Push hotfix to Android, hope iOS users don't complain.
Neither feels good.
Sometimes I wonder if there should be a tool that combines feature flags with crash reporting — so when you see a crash spike in your dashboard, you could just turn off the broken feature with one click, no app release needed. Maybe something like this already exists and I haven't found it?
Two questions:
How do you handle this today? Server-side workarounds, kill switches you built yourself, or just live with the App Store delay?
If a one-click solution like that existed, would it actually be useful, or is the problem more nuanced than I'm making it sound?
Genuinely curious how others approach this.