Decryption key:
FluxStore Delivery Boy - Flutter App for Woocommerce v6.2.0
= Version 6.2.0
Last updated: Jun 15, 2026
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:
To upgrade
Flutter 3.44.x, please close all your IDE and run these commands in the project folder
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.
- 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
- 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,
+ }