Skip to main content
SDK Version

Customizations

This page guides you on how to customize the Actito SDK to better suit your application’s integration and configuration needs.

The customizations offered in our library are part of the native SDKs. For more information on what customizations are available, please take a look at the native customization guides.

Delaying pending events

In case your application does not follow the typical hybrid app initialization, and you are not able to listen to the events as soon as Cordova signals the device is ready, you can delay those events until Actito becomes ready, after you call Actito.launch().

To achieve that, you can add the following to your config.xml.

<widget>
<preference name="com.actito.cordova.hold_events_until_ready" value="true"/>
</widget>

iOS Customizations

Actito Options

The ActitoOptions.plist file lets you control and customize various SDK behaviors and appearance settings — such as logging, automatic configuration, push handling, and theming.

To use it, simply create a ActitoOptions.plist file and set its location in your app.json:

{
"expo": {
// more code...

"plugins": [
[
"react-native-actito",
{
"ios": {
"optionsFile": "./configuration/ActitoOptions.plist"
}
}
]
]
}
}

All properties are optional, so you only need to include the ones you want to customize.

You can find a full list of available properties here.