1

I want to implement in-app-update or on-the-air update which means whenever the user opens the app, it checks and automatically downloads a new chunk of code and merges it, and asks the user to restart like most of the games (COD, PUBGm) do.

NOTE : I'm not talking about in_app_update

I tried to find out the basic workflow but could not.

Ayyaz meo
  • 450
  • 5
  • 13

1 Answers1

1

I am assuming that what you need is what Firebase Remote config does, you can read about it and get more details from its Flutterfire docs

Gwhyyy
  • 7,554
  • 3
  • 8
  • 35
  • Yes. Needed something like this. Are there any other services available except firebase? – Ayyaz meo Nov 19 '22 at 21:32
  • Yes, a similar service is available on https://www.back4app.com/ and https://parseplatform.org/ and https://docs.growthbook.io/ – Gwhyyy Nov 19 '22 at 21:41