1

I have been struggling with a concept regarding in app update notification to the user in flutter framework. I mean when you deploy a new version of an existing mobile app in google play store or in the apple app store, the user should get the notification on opening the app to use. as the user clicks update button, the new version of app should be downloaded from respective stores.

I tried to use upgrader package for the above feature, but i did not get the expected result

  • Updating an app is based on user store preferences. On the other hand, you can display a modal, conditioned on the version of the app, informing the user of an available update and redirecting to the store. – VincentDR Jul 26 '23 at 09:38
  • You can try this dependency : **in_app_update: ^4.1.4** – Darshan Kachhadiya Jul 26 '23 at 10:48
  • hi @VincentDR, Thank you for suggestion. but How to fetch the current version of installed app on device and existing version of app in google play store based on which I can show the modal pop up – Pitabash Choudhdry Jul 27 '23 at 05:02
  • hi @DarshanKachhadiya, thank you for the suggestion, let me try out this.. – Pitabash Choudhdry Jul 27 '23 at 05:03

1 Answers1

0

Use following packages:

  1. in_app_update package for Android.
  2. upgrader for both Android and IOS platform.
Jenish MS
  • 357
  • 2
  • 13