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!
Flutter OTA (hot update) on Android with REQUEST_INSTALL_PACKAGES banned
1.1k Views Asked by beria At
2
There are 2 best solutions below
1
Ozan Taskiran
On
You could write your own backend and define a route that checks if there is an update.
To do this, you store the latest version number in the database. Every time you want to run an update, you send the current version number of your app and compare it with the version in the database. If the version is smaller than the version in the database, then you can download your apk from a file server and run it.
Related Questions in FLUTTER
- Flutter + Dart: Editing name of a tab shows up a black screen
- The Binary Version Of its metadata is 1.8.0, expected Version is 1.6.0 build error
- Way to get CustomPainter to track face in Camera Flutter MLKit
- flutter Null check error: did not show file and line number
- Creating multiple instances of a class with different initializing values in Flutter
- I want to paste stickers into to my TextField and to show the stickers beside the emojis
- Flutter plugin development android src not opening after opening example
- Module not found when building flutter app for IOS
- How to make barrier area interactive in flutter modal bottom sheet
- Can an RPC result be included in a Supabase select function in Flutter for Data Modeling?
- Why do I need to wait to reaccess to Firestore database even though it has already done before?
- Flutter web app on Windows -how to support mouse drag for horizontal and vertical scrolling as well as using mouse wheel
- I wrote this time displaying FLUTTER app, How can I improve it?
- Appwrite and / or Spring Boot Backend
- Flutter two_dimensional_scrollables Web app Chrome - cannot get horizontal scroll to work?
Related Questions in OTA
- Cannot upgrade to syncElegantOTA v3 in platformIO
- ESP HTTPS OTA Begin failed
- To less space error when I try to Update ESP32 SPIFFS - OTA
- Trying OTA firmware update using @thingsboard in ESP32
- OTA using Azure
- acp: missing destination file in target file generation for ota generation using make dist
- A ninja failed related error occurs during the build of the OTA package
- arduino ide - ESP32 devkit v1 OTA via internet (HTTPS) looping back and load .bin file every 5 second from website
- ESP32 keeps rebooting after guru core 0 crashed
- OTA using Azure IotHub for stm32 and gsm module interfaced board
- Restart Android Flutter app after OTA update
- Require example code of Arduino/ESP32 to download .bin file for OTA update through http or ftp
- Problem with OTA update ESP32. Bytes lost
- I want to update or manage my executable file (which is a QT application) running on raspberry pi over the air (OTA), how to do it?
- I am trying to hit Sabre Fare Rule soap api on postman but it's giving error errors.xml.USG_INVALID_ACTION, How to resolve it
Related Questions in GOOGLE-PLAY-DEVELOPER-API
- Play Developer Api, edits.tracks.update not work
- I am trying to upload apk using google play developer api and it shows error "APKs are not allowed for this application."
- Quarkus - Calling Google service API OAuth2
- Google in-app-purchases subscriptions return error : "invalid value"
- Fetch release information from Google Play Console API
- Google Play SubscriptionNotification - SUBSCRIPTION_PURCHASED event initial state is SUBSCRIPTION_STATE_CANCELED with systemInitiatedCancellation
- How to (automatically) prompt/inform users of an Android app, which is in open test, to update, if there is a new version available?
- How to upload android app via google play API?
- Difficulty with SMS Permissions in React Native App on Google Play Store
- Google Play Developer Reviews API does not return reviews without comments
- BigQuery Data Transfer for Google Play - Missing New Users/Returning Users Metric
- How to get google play purchase details for voided purchases
- Java error in retrieving financial report data from Google Play Console using google-cloud-storage
- Fetch user's Google Play balance with Google Play API
- The caller does not have permission | jenkins
Related Questions in OVER-THE-AIR
- iOS over-the-air ad-hoc app installs with 'intergrity canot be verified'. Install by cable via iTunes works perfectly
- Install ipa over link
- fix for seeds labs android rooting
- ESP32 OTA Drive update using otadrive_esp library
- Expo Publish not updating after submitted build - ios
- Flutter OTA (hot update) on Android with REQUEST_INSTALL_PACKAGES banned
- How to use Lineage OS OTA in AOSP projects?
- OTA ipa distribution using localhost
- How expo-updates works in different versions of a react native bare workflow app?
- Thingsboard OTA : How to update firmware of the IoT devices via GSM or Bluetooth using Thingsboard?
- How bypass integrity error during OTA install of an IPA file?
- iOS 14 apps failed on over the air installation
- I already a expo app published on play and apple store. How can I use a OTA over-the-air update in this case?
- Can I distribute an iOS app over-the-air from an individual account?
- Secure the IOS enterprise IPA file by preventing direct downloads
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can give a try to flutter_eval