Home > Mobile >  Flutter OTA (hot update) on Android with REQUEST_INSTALL_PACKAGES banned
Flutter OTA (hot update) on Android with REQUEST_INSTALL_PACKAGES banned

Time:09-27

I want a mechanism to push small-features and bug-fixes quickly, because Playstore-reviews are getting stuck for at least one week again. I checked ota_update which seemed promising, but it uses REQUEST_INSTALL_PACKAGES permission, which has been banned by Playstore for any new update / App. Next suggestion was to use Firebase-Remote-Config but that does not help in a buggy-code scenario, it's more for A/B testing. I have not tried Hydro-SDK because it involves using TypeScript. Another option is Chimera but from its Github activity, it seems very new and might not be stable. Requesting some suggestions on what steps I can take. Thanks!

CodePudding user response:

You can give a try to flutter_eval

  • Related