Documentation Index
Fetch the complete documentation index at: https://docs.flowx.ai/llms.txt
Use this file to discover all available pages before exploring further.
Android SDK migration guide
SDK API changes
Config
TheConfig interface used when initializing the SDK now requires a new, mandatory, property, named organizationId (the ID of the organization used to identify your installation):
diff 5.1.x LTS..5.9.x version
Custom loaders
TheCustomLoaderProvider interface has been changed from:
5.1.x LTS version
5.9.x version
CustomLoaderProvider.LoaderType is defined like this:
The available types for the
loaderType parameter are:LoaderType.StartProcess- received for overriding the loader displayed when starting a new processLoaderType.ReloadProcess- received for overriding the loader displayed when resuming an existing processLoaderType.Action- received for overriding the loader displayed while the action having thenamename is executedLoaderType.Upload- received for overriding the loader displayed while the upload action having thenamename is executed
name property received for the LoaderType.Action and LoaderType.Upload types represents the name of an action, as defined at process definition time, received for being able to override the loader displayed while that action is executed.Returning an implementation of a
Returning
CustomLoader replaces the built-in platform loader with the provided one for the specified use cases.Returning
null keeps the built-in platform loader for the specified use cases.Related resources
Android SDK reference
Android renderer SDK documentation
Migration overview
Return to the 5.1 LTS → 5.9 LTS migration hub

