Home > Net >  Flutter how to deploy updates without updating on the play store?'
Flutter how to deploy updates without updating on the play store?'

Time:02-19

So in some apps, I noticed that there is a new button, feature etc without me updating on the play store how can I do it on an app developed using flutter

CodePudding user response:

You can pull information from a database that will update your app, so basically for example

var backgroundColor = firebaseColor

firebaseColor can be edited in firebase(or another backend), so whenever you set it in firebase it will update in the app and change the appearance of the app without actually pushing an update. this is an over simplistic explanation but the concept works with anything.

CodePudding user response:

In case you want something like expo OTA update, that is currently neither possible, nor on the roadmap, accourding to Flutter. :(

  • Related