Mallikarjun
Mallikarjun

Reputation: 119

How to update android/ios app programatically with flutter when new version uploaded in to appstore/playstore

** I want to update my flutter app (ios/android) programatically when new version uploaded in to google PlayStore/AppStore with in the application window i need to show the dialogbox. Is there any packages or plugins for this. **

Upvotes: 2

Views: 236

Answers (1)

Rashiduzzaman Khan
Rashiduzzaman Khan

Reputation: 287

You can create a PHP API where return a play store app version code. Then receive a json from Android/iPhone. Compare with app version to PHP API return version. If PHP version is bigger than app version then show alert dialog. When you upload new application in play store change API version code.

Upvotes: 1

Related Questions