Skip to main content

Android SDK migration guide (v4.5.0)

Initialization config changes

A new configuration parameter, named locale was added 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:

Changes when starting a Flowx process

Two new parameters were added:

Changes when resuming a Flowx process

One new parameter was added:

Public API changes

The changeLanguage method has been updated and renamed to changeLocaleSettings to accommodate the newly added locale config parameter:

Library dependencies updates


iOS SDK migration guide (v4.5.0)

Initialization config changes

A new configuration parameter, named locale was added to improve formatting the dates, numbers and currencies. The locale needs to be set on the FXConfig.sharedInstance.configure method

Changes when starting a process

Two new parameters were added on the 3 available start process methods:

Changes when resuming a Flowx process

One new parameter was added on the 3 available continue process methods:

Public API changes

The changeLanguage method has been updated and renamed to changeLocaleSettings to accommodate the newly added locale config parameter:

Angular SDK migration guide (v4.5.0)

Renderer SDK component usage

In the Angular SDK, the <flx-process-renderer> component has two new parameters have been introduced: appInfo and locale. These additions help support localization and application-specific configurations.
  • appInfo: Object containing an appId key, which identifies the application.
  • locale: Provides region-specific settings for localization.
Add the definitions for these properties in the class file of the component that uses the process renderer component:
Use these parameters in the template as inputs for the <flx-process-renderer> component:

Icon module update

The withExtraIconSet method has been replaced with provideExtraIconSet, which should now be used in the providers array.

Additional libraries

The following npm packages are now essential for handling date and input formatting:
  • date-fns
  • inputmask
Last modified on July 7, 2026