Actively maintained

FluxStore Delivery Boy changelog

10 documented releases, the latest being v6.4.0 on Sep 22, 2026. Every one of them is a free update for existing license holders.

Jump to a release

v6.4.0

LatestSep 22, 2026
Last updated: Sep 22, 2026 - Link Purchase | Download
πŸ”₯Β 50% OFF All FluxStore Apps β€” Sep 23–29 ONLY!
πŸ’‘
QUICK NOTE

IMPORTANT UPDATE

πŸ”„ Core Updates

(1) Flutter 3.47.x Upgrade ⬆

  • Upgrade to the latest Flutter channel stable v3.47.x [Android] Update compileSdk from 36 to 37
To make sure you are using the correct Flutter version, run this command:
flutter --version
To upgrade Flutter 3.47.x, please close all your IDE and run these commands in the project folder
flutter channel stable
flutter upgrade --force
flutter clean
flutter pub get
To update/migrate the app to the latest version
notion image
⚠️
Some plugins may show Swift Package Manager/Kotlin Gradle Plugin warnings in the logs while running the app. But you can totally ignore them. Your app still works fine.

(2) Required App Update + Custom Dialog Text

  • Force users to update when a new version is available in the store, or keep the update optional with a customizable dialog title, message, and button labels.
  • Demo Screenshots:
notion image
Configuration
"advanceConfig": {
  "versionCheck": {
    "enable": true,
    "iosId": null,
    "iOSAppStoreCountry": null,
    "androidId": null,
    "androidPlayStoreCountry": null,
+   "forcedUpdate": false,
+   "dialogTitle": null,
+   "dialogText": null,
+   "updateButtonText": null,
+   "dismissButtonText": null,
  }
}
Config examples β€” default, custom text, and forced updates
Default:
"versionCheck": {
  "enable": true,
  "iosId": null,
  "iOSAppStoreCountry": null,
  "androidId": null,
  "androidPlayStoreCountry": null,
  "forcedUpdate": false,
  "dialogTitle": null,
  "dialogText": null,
  "updateButtonText": null,
  "dismissButtonText": null
}
Custom text:
"versionCheck": {
  "enable": true,
  "iosId": null,
  "iOSAppStoreCountry": null,
  "androidId": null,
  "androidPlayStoreCountry": null,
  "forcedUpdate": false,
  "dialogTitle": "New version availale",
  "dialogText": "Would you like to update it now?",
  "updateButtonText": "Update Now",
  "dismissButtonText": null
}
Forced update:
"versionCheck": {
  "enable": true,
  "iosId": null,
  "iOSAppStoreCountry": null,
  "androidId": null,
  "androidPlayStoreCountry": null,
  "forcedUpdate": true,
  "dialogTitle": "App Update Required",
  "dialogText": "Please update to continue using the app",
  "updateButtonText": "Update",
  "dismissButtonText": null
}

(3) Google & Facebook Login for Web/PWA

Google and Facebook social login now work on Web/PWA builds. Native Android/iOS behavior remains unchanged.
  • Google: on web, the official Google Identity Services button is rendered and the web client ID is configured from env.dart
  • Facebook: initialize the JS SDK on web/macOS with facebookAppId before login
Configuration
"loginSetting": {
  "showGoogleLogin": true,
+ "googleWebClientId": "YOUR_GOOGLE_WEB_CLIENT_ID.apps.googleusercontent.com",
}


IMPORTANT UPDATE
  • ⬆️ Updated dependencies to latest versions
This release contains many fixes
  • Fixed: missing new SMS login support on some platforms
  • Fixed: Firebase auth error shown on the cart screen
  • Fixed: lag when scrolling a complex app layout
How to activate FluxStore on FluxBuilder app builder?
How to update/migrate the app to the latest version?
notion image


v6.3.0

Jul 29, 2026
Last updated: Jul 29, 2026 - Link Purchase | Download
πŸ’‘
QUICK NOTE

NEW FEATURE

πŸ”„ Core Updates

Update Google Play Policy πŸ’₯

Supported: All Apps
  • Updated target API level for Android builds to Android 16 (API level 36).
  • Updated com.revenuecat.purchases:purchases to the latest version.
This ensures continued app compatibility, improved performance, and access to new platform features while adhering to Google's publishing standards πŸ‘
notion image
notion image


IMPORTANT UPDATE
  • ⬆️ Updated dependency set to latest compatible versions.
This release contains many fixes
  • Updated salesiq_mobilisten to fix iOS build.
  • Fixed issue where external WebView could not open on Android.
  • Fixed delay on notification permission screen.
  • Fixed OTP sending flow to show clearer failure messaging.
  • Fixed excessive address requests when app bar does not include location item.
  • Fixed WebView keyboard gray gap issue.
How to activate FluxStore on FluxBuilder app builder?
  • Follow this guide:
How to update/migrate the app to the latest version?

v6.2.0

Jun 15, 2026
Last updated: Jun 15, 2026 - Link Purchase | Download
πŸ’‘
QUICK NOTE

NEW FEATURE

πŸ”„ Core Updates

(1) Flutter 3.44.x Upgrade ⬆

Upgrade to the latest Flutter channel stable v3.44.x
To make sure you are using the correct Flutter version, run this command:
flutter --version
To upgrade Flutter 3.44.x, please close all your IDE and run these commands in the project folder
flutter channel stable
flutter upgrade --force
flutter clean
flutter pub get
To update/migrate the app to the latest version
⚠️
Some plugins may show Swift Package Manager/Kotlin Gradle Plugin warnings in the logs while running the app. But you can totally ignore them. Your app still works fine πŸ‘

(2) Notification Improvements πŸ””

Supported: All frameworks
  • Improved notification screen, notification detail cards UI/UX.
notion image
  • Fixed Android notifications are still shown when users disable Firebase topic flow.
  • Fixed Android notification is cleared unexpectedly when opening the app.
  • Fixed Android foreground notification display behavior.
  • Fixed image and deeplink issues in notification flows.

(3) OneSignal User Tracking Upgrade πŸ””

Supported: All frameworks
notion image
  • Added tracking for user language, email, and phone number on OneSignal integration.

(4) Auth Config Refactor ⬆

Supported: All frameworks | ⚠️ BREAKING CHANGE
  • Introduced unified authConfig structure to support flexible sign-up fields and modern provider config.
+ "authConfig": {
+   "defaultMethod": "emailPassword",
+   "providers": { ... },
+   "registration": {
+     "email": {"show": true, "require": true},
+     "firstName": {"show": true, "require": true},
+     "lastName": {"show": true, "require": true},
+     "phone": {"show": false, "require": false},
+     "username": {"show": true, "require": false},
+   },
+ }

(5) Tracking Events Refactor ♻️

Supported: All frameworks
  • Updated tracking events to improve consistency and maintainability.
    • Tracking login/register method events: sms, facebook, google, email/password
    • Fixed duplicate view cart events
    • Improved the view of the product detail event
  • Upgrade the Facebook App Event and Firebase Analytics package to the latest version

(6) Currency Config Refactor ♻️

Supported: All frameworks | ⚠️ BREAKING CHANGE
  • Extracted currency-related settings from advanceConfig into dedicated currencyConfig.
"advanceConfig": {
-		"DefaultCurrency": ..., 
-		"Currencies": ..., 
-		"EnableWOOCSCurrencySwitcher": true
}
+ "currencyConfig": {
+   "defaultCurrencyCode": "USD",
+   "currencies": [...],
+   "enableWOOCSCurrencySwitcher": true,
+ }

IMPORTANT UPDATE
  • ⬆ Upgrade dependencies to the latest version
This release contains many fixes
  • Fixed: incorrect Android navigation bar color after opening app.
  • Fixed: WebView microphone permission issue on Android (MODIFY_AUDIO_SETTINGS).
  • Fixed: correct some language display names in env.dart file
How to activate FluxStore on FluxBuilder app builder?
How to update/migrate the app to the latest version?

v6.1.0

April 29, 2026
Last updated: April 29, 2026 - Link Purchase | Download

v6.0.1

April 1, 2026
Last updated: April 1, 2026 - Link Purchase | Download

πŸ”„ Core Updates

This patch release addresses critical bug fixes reported after v6.0.0

  • Fixed: config JSON not applied when changing language
  • Fixed: Build issue due to connectivity_plus package

How to update/migrate the app to the latest version?
How to activate FluxStore on FluxBuilder tool?

v6.0

Mar 29, 2026
Last updated: Mar 29, 2026 - Link Purchase | Download
NEW FEATURE

πŸ”„ Core Updates

(1) Flutter 3.41.x Upgrade ⬆

Upgrade to the latest Flutter channel stable v3.41.x
To make sure you are using the correct Flutter version, run this command:
flutter --version
To upgrade Flutter 3.41.x, please close all your IDE and run these commands in the project folder
flutter channel stable
flutter upgrade --force
flutter clean
flutter pub get
To update/migrate the app to the latest version
To fix the build issue with the new Flutter version
After upgrading, you may meet the cache issue of iOS while building the application. Please run this command to fix:
flutter precache --ios
πŸ’‘
In the new version, we have some breaking changes:
  • You need to upgrade your Xcode version to 26.x to be able to run the app as well as upload to TestFlight

πŸ’‘
IMPORTANT UPDATE
  • ⬆️ Updated flutter_facebook_auth and facebook_app_events to latest versions β€” requires Xcode 26.x or later to build for iOS
This release contains many fixes
  • Fixed: wrong currency used for wallet cart payments
  • Fixed: WebView crashing when opened (Vendor Admin, Delivery)
  • Fixed(HTML): YouTube iframe not loading video content inside HTML content blocks
  • Fixed: Arabic text search failing
  • Fixed: shipping methods not appearing when no saved address exists
  • Fixed(Rating): missing star caused by widget overflow
  • Fixed(SearchScreen): text position in RTL
  • Fixed: time parsing error causing the product list to display nothing
  • Fixed: app not falling back to local config when cloud config/Mstore API caching is unavailable
  • Fixed: fee names with encoded HTML entities displaying raw symbols
  • Fixed: countdown timer position width issue in RTL layout
  • Fixed(BoostEngine): falling back to cached result when remote data is missing
  • Fixed(HomeScreen): product horizontal layout overlapping after switching app language
  • Fixed: Size Guide not appearing due to case sensitivity in title matching
  • Fixed: URL error display on HTML content pages
  • Fixed(Magento): product variant details not loading or updating when a variant option is selected
  • Fixed: shipping address being updated unexpectedly during checkout navigation
  • Fixed: categoryMenuShowDepth config missing from some category menu layouts
  • Fixed(Checkout): email field not validated when marked as not required
  • Fixed(Loyalty): incorrect loyalty card priority in reward display
How to update/migrate the app to the latest version?
How to activate FluxStore on FluxBuilder tool?

v5.6.0

December 25th, 2025
Last updated: December 25th, 2025 - Link Purchase | Download
NEW FEATURE

(1) Flutter 3.38.5 Upgrade ⬆

Upgrade latest Flutter channel stable v3.38.5
To make sure you are using the correct Flutter version, run this command:
flutter --version
To upgrade Flutter 3.38.5, please close all your IDE and run these commands in the project folder
flutter channel stable
flutter upgrade --force
flutter clean
flutter pub get
To update/migrate the app to the latest version
To fix build issue with new flutter version
After upgrading, you may meet the cache issue of iOS while building the application, please run this command to fix:
flutter precache --ios

(2) Full Support for Xcode 26 & iOS 15 Minimum Deployment πŸ’₯

  • Fully compatible with Xcode 26, ensuring smooth builds and future-proof iOS development.
  • Minimum iOS deployment target has been upgraded to iOS 15.0 (previously iOS 14.0).
⚠️ Notice
This update drops support for iOS 14 and earlier versions due to Xcode 26 and latest iOS SDK requirements.

(3) Video Splash Screen 🎬

Make a strong first impression with the new Video Splash Screen feature.
  • Supports video playback on app launch instead of static images.
  • Ideal for branding, promotions, or storytelling.
Configuration
  • Edit in the lib/env.dart file as below:
  "splashScreen": {
    "enable": true,

    /// duration in milliseconds, used for all types except "rive", "flare" and "video"
    "duration": 2000,

    ///  Type should be: 'fade-in', 'zoom-in', 'zoom-out', 'top-down', 'rive',
    ///  'flare', 'static', 'video'
    "type": "video",
    "image": "assets/videos/splashscreen.mp4", // https://demo.mstore.io/wp-content/uploads/2025/09/splashscreen.mp4

    /// AnimationName's is used for 'rive' and 'flare' type
    "animationName": "fluxstore",

    "boxFit": "contain",
    "backgroundColor": "#ffffff",
    "paddingTop": 0,
    "paddingBottom": 0,
    "paddingLeft": 0,
    "paddingRight": 0,
  },

IMPORTANT UPDATE
  • Upgrade(ios): migrateΒ OneSignalNotificationServiceExtensionΒ to adapt with Xcode 26
  • Chore: update phone field labels to comply with App Store guideline 5.1.1
This release contains many fixes
  • Fixed: Build ios due to recent FBSDKCoreKit release
  • Fixed (share_plus): Avoid crash on iOS 26 when sharing
  • Fixed: Unable to display banner image in order details
  • Fixed (Webview): Handle permission camera & mic for android
  • Fixed (Webview): download base64 image to file
  • Fixed: Unable to display banner image in order details
How to update/migrate the app to the latest version?
How to activate FluxStore on FluxBuilder tool?



v5.3.0

Jun 2nd, 2025
Last updated: Jun 2nd, 2025 - Link Purchase | Download
NEW FEATURE

(1) Flutter 3.32.x Upgrade πŸ”₯

Upgrade latest Flutter channel stable v3.32.x
To make sure you are using the correct Flutter version, run this command:
flutter --version
To upgrade Flutter 3.32.x, please close all your IDE and run these commands in the project folder
flutter channel stable
flutter upgrade --force
flutter clean
flutter pub get
To update/migrate the app to the latest version ☘️
To fix build issue with new flutter version
After upgrading, you may meet the cache issue of iOS while building the application, please run this command to fix:
flutter precache --ios

(2) Optimize Image performance πŸ’―

  • To optimize image performance, replace the outdated Generate Image feature with Optimole for real-time resizing and optimization. The plugin enhance loading speed and image quality by dynamically adjusting images based on visitor's screen size.
Configuration
  1. On the website must install Optimole plugin https://wordpress.org/plugins/optimole-wp/
  2. Configure in lib/env.dart file
...
  "advanceConfig": {
   ...
        "OptimizeImage": {
            "enable": true,
            "plugin": "optimole" // Support "re-generate-image" plugin (old) & "optimole" plugin (new)
        },
   ...
  }
...

IMPORTANT UPDATE
  • πŸ’¦ Fix iOS build issue with FBSDKLoginKit
  • πŸ†™Β Update Khmer translation
  • βŒ› Support firebase analytics consent mode v2
  • πŸ”· Update status translation in SmartRefresherΒ 

This release contains many fixes
  • Fixed: pin location not working in Order Details
  • Fixed: the location on the Map is not displayed correctly
  • Fixed (Android): build with name containing single quotation marks
  • Fixed: build ios due to FBSDKLoginKit upgrade
  • Fixed (HTML): hide unsupport noscript tag
  • Fixed (Notification): issue push Firebase image notification on iOS
  • Fixed (RateMyApp): native dialog not working on anroid
  • Fixed (aboutUs): pageId not working and open Envato link
  • Fixed (Facebook): support limited login in ios
  • Fixed: webview_flutter can't scrolling when alwaysShowTabBar and ZoomStyle are enabled
  • Fixed (RealtimeChat): chat UI in RTL
  • Fixed (RealtimeChat): cannot show list chat for admin to customer
  • Fixed: improve notification badge icon click behavior
  • Fixed (ColorConverter): covert color to hex string
  • Fixed: escape string some where
How to update/migrate the app to the latest version?
How to activate FluxStore on FluxBuilder tool?


v5.0

Last updated: 28 November, 2024 - Link Purchase | Download
πŸ’‘
IMPORTANT UPDATE
  • πŸ”† Upgrade (FirebaseLibrary): firebase_core to version 3.6.0 and other related firebase libraries
  • πŸ”° Remove wechat_assets_picker & photo_manager
  • 🌐 Support Firebase for web platform
  • πŸ₯‡ Chore(deps): upgrade salesiq_mobilisten lib
  • 〽️Refactor (handle Web Link): pop to root before loading and hide loading after fetching data

This release contains many fixes
  • Fixed (cache): http cache is not working properly
  • Fixed (AppStore): update message when accessing photo library
  • Fixed: change language onboard screen
  • Fixed (AppStore): remove the decline button when accessing device’s cameraΒ 
  • Fixed (Build): cannot build apk file with zoho.salesiq
  • Fixed (AppModel): init app with unsupported language
  • Fixed (Webview): not determine location on Google Maps
  • Fixed (Webview): crash app when launch special urls
  • Fixed (ApplePay): missing import showFluxDialogText
  • Fixed: Forward/Backward icon does not display
How to update/migrate the app to the latest version?
How to activate FluxStore on FluxBuilder tool?
πŸ’‘
FREE DRAG & DROP APP BUILDER
  • Download | Document Guide
  • FluxStore apps provide the full source code, allowing you to customize everything.
  • Special gifts when using the FluxStore or FluxNews app πŸŽ‰
    1. Free FluxBuilder tool to edit your app's UI easily with drag&drop Lifetime.
    2. Free update your app's UI without republishing it to App Stores or Google Play Store.
    3. Free translation service for your local language.
  • FluxStore apps provide the full source code, allowing you to customize everything.
  • Video Demo:

v4.3.0

Last updated: 27 September, 2024

Earlier releases

11 more releases shipped before v4.3.0. They are part of the same lifetime-update license.

  • v4.2.0
  • v4.1.1
  • v4.1.0
  • v4.0.0
  • v3.16.8
  • v3.16.0
  • v3.13.6
  • v3.13.0
  • v3.10.0
  • v3.7.0
  • v3.4.0