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
-
Depends on the feature you want to implement. What have you tried?daddygames– daddygames2022-02-18 16:40:21 +00:00Commented Feb 18, 2022 at 16:40
-
Some of that is just server side, the app was pre-programmed to do it. you can't update a package without installing it in some form, That's how things work in android afaikxrayian– xrayian2022-02-18 18:39:22 +00:00Commented Feb 18, 2022 at 18:39
-
If you haven’t disabled it, apps usually get updated automatically, e.g. over night or so.mkobuolys– mkobuolys2022-02-18 21:47:17 +00:00Commented Feb 18, 2022 at 21:47
-
@daddygames I wanted to just add a button like when the participants finish the challenge a new button should pop but after 30 days of challengesAkashgreninja– Akashgreninja2022-02-19 17:18:41 +00:00Commented Feb 19, 2022 at 17:18
-
You may build your app with that business logic in mind. Flutter allows you to dynamically create the components displayed to the user based on your own business logic. This doesn't necessitate a "patch" of some kind to the app. Instead, your app should be aware that this change could be triggered and account for it in code. It's not really clear why you want to "patch" the app or what you have available in the existing, deployed app that could allow you to add a button and make it do something.daddygames– daddygames2022-02-21 15:31:22 +00:00Commented Feb 21, 2022 at 15:31
Add a comment
|
2 Answers
In case you want something like expo OTA update, that is currently neither possible, nor on the roadmap, accourding to Flutter. :(
Comments
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.
1 Comment
Akashgreninja
so just tap into the database? I had an idea what if I use the sleep module and after the x amount of time put the new button or anything will it still work? I'm a noob please excuse me if this is a dumb solution