SDK

iOS Customizations

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

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.