multi_updater 1.0.4
multi_updater: ^1.0.4 copied to clipboard
A Flutter package that checks for app updates via Firebase Remote Config or a custom JSON endpoint, and shows users an update prompt with a direct link to App Store or Play Store.
multi_updater #
A lightweight Flutter package that checks for app updates via Firebase Remote Config or a custom JSON API.
It shows an update dialog with options to update via App Store or Play Store — or to exit the app.
✨ Features #
- 🔥 Firebase Remote Config support
- 🌐 Custom JSON endpoint fallback
- 📲 Works on both Android & iOS
- 🧱 Uses a simple wrapper — no need to modify every screen
- 🆕
onUpdateTapsupport — override default behavior
🚀 Getting Started #
Add dependency #
Usage #
'''dart void main() { runApp( UpdaterWrapper( iosPath: "https://apps.apple.com/app/id1234567890", androidPath: "https://play.google.com/store/apps/details?id=com.example.app", useFirebase: true, remoteConfigKey: "latest_version", jsonUrl: "https://example.com/version.json", onUpdateTap: null, child: const MyApp(), ), ); }
dependencies:
multi_updater: ^1.0.4