2. Install the Airflux SDK
1. SDK Installation
Follow the steps below to add the Airbridge SDK package file to your project.
Download the latest version of the Airflux Unity SDK package file.
Import the package file by selecting the menu option [Assets]>[Import Package]>[Custom Package].
When the import is complete, the [Airflux] tab will appear in the top menu bar of the Unity Editor.
2. SDK Initialization
Initialize the SDK by referring to the code below.
App Name
string
Input the App Name from the Airbridge dashboard.
Required
App Token
string
Input the App Token from the Airbridge dashboard.
Required
SDK Enabled
boolean
Set whether to enable the SDK upon initialization.
true: The SDK is initialized in active mode.
false: The SDK is initialized in inactive mode and is enabled upon calling the
Airflux.EnableSDK()function.
Optional
Auto Start Tracking Enabled
boolean
Set whether to collect events automatically upon SDK initialization.
true: Event collection starts automatically upon initialization.
false: Event collection starts upon calling the
Airflux.StartTracking()function.
Optional
Log Level
AirfluxLogLevel
Set the log level for the Airflux SDK. Choose from debug, info, warning, error, fault .
Optional
Session Timeout
double
The default value is 300 seconds. Modify if needed.
Optional
Allow Every Country Enabled
boolean
When set to true, all countries are allowed to follow Airflux's optimization policies. To use a specific list of countries, set it to false and provide a list using setCountryAllowlist().
Optional
Country Allowlist
List<String>
Set the countries where calling the Airflux's inference API should be allowed. Use country codes following the ISO 3166-1 alpha-2 format (e.g., US, KR). You can set multiple countries using the Country Allowlist. Airflux identifies a country based on the value tied to the device.
Optional
3. Verification
Unity Log check
To view detailed log information for your app, use the Unity Log tool.
You can set the log output level using the setLogLevel function.
Setting it to AirfluxLogLevel.DEBUG allows you to see all Airflux logs.
4. Frequently Asked Questions
5. Troubleshooting
Last updated

