This guide assists in migrating from FlowX v4.1.x to v4.5.1.
locale
was added in order to improve formatting the dates, numbers and currencies.
When the SDK initialization happens through the FlowxSdkApi.getInstance().init(...)
method, the argument has to be set inside the config: SdkConfig
parameter value:
Name | Description | Type | Requirement |
---|---|---|---|
applicationUuid | The uuid string of the application containing the process to be started | String | Mandatory |
onProcessEnded | Callback function where you can do additional processing when the started process ends | (() -> Unit)? | Optional. It defaults to null . |
Name | Description | Type | Requirement |
---|---|---|---|
onProcessEnded | Callback function where you can do additional processing when the continued process ends | (() -> Unit)? | Optional. It defaults to null . |
changeLanguage
method has been updated and renamed to changeLocaleSettings
, in order to accommodate the newly added locale
config parameter:
locale
was added in order to improve formatting the dates, numbers and currencies.
The locale needs to be set on the FXConfig.sharedInstance.configure
method
Name | Description | Type | Requirement |
---|---|---|---|
applicationUuid | The uuid string of the application containing the process to be started | String | Mandatory |
onProcessEnded | Callback function where you can do additional processing when the started process ends | (() -> Void)? | Optional. It defaults to nil . |
Name | Description | Type | Requirement |
---|---|---|---|
onProcessEnded | Callback function where you can do additional processing when the started process ends | (() -> Void)? | Optional. It defaults to nil . |
changeLanguage
method has been updated and renamed to changeLocaleSettings
, in order to accommodate the newly added locale
config parameter:
<flx-process-renderer>
component has two new parameters have been introduced: appInfo and locale. These additions help support localization and application-specific configurations.
<flx-process-renderer>
component:
withExtraIconSet
method has been replaced with provideExtraIconSet
, which should now be used in the providers array.