Install SDK
- Download the latest version of the Airbridge Unreal SDK.
-
Create the
Pluginsfolder in the root directory of your Unreal Engine project. -
Locate the Airbridge Unreal SDK within the
Pluginsfolder like in the following structure.
- Navigate to [Settings]>[Plugins] in the Unreal Engine toolbar and enable the Airbridge Unreal SDK.

- Add
AirbridgeUnrealto the PublicDependencyModuleNames array within the app’s Build.cs file (<YOUR_UE_PROJECT>.Build.cs).
Install Restricted SDK
- Download the latest version of the Airbridge Unreal SDK.
-
Create a
Pluginsfolder in the root directory of your Unreal Engine project. -
Locate the Airbridge Unreal SDK within the
Pluginsfolder like in the following structure.
- Navigate to [Settings]>[Plugins] in the Unreal Engine toolbar and enable the Airbridge Unreal SDK.

- Add
AirbridgeUnrealto the PublicDependencyModuleNames array within the app’s Build.cs file (<YOUR_UE_PROJECT>.Build.cs).
Initialize SDK
Enter the correct App Name and App Token values in the SDK Settings window. The App Name and App Token can be found on the [Settings]>[Tokens] page in the Airbridge dashboard.Configure SDK settings
-
Open the
Project Settingswindow in the Unreal Engine. - Under the [Plugins] section, click Airbridge Unreal SDK to open the SDK settings window. You may fill in the fields or click on the checkboxes that are necessary for your service.
-
After filling in the required fields, click the
Set as Defaultbutton.
References for configuring the SDK settings
References for configuring the SDK settings
Configure ATT Prompt
- Prepare the text you will use in the ATT prompt.
- Provide the ATT prompt following this guide provided by Apple.
- If the install event is not collected, the Airbridge React Native SDK delays collecting install events for 30 seconds until the user allows tracking each time the app is launched. If the user exits the app before deciding whether to allow tracking, the SDK will not collect the install event and will try again at the next app launch.
iOS Tracking Authorize Timeout Seconds to set a sufficient delay time for collecting install events. The default value is 30 seconds, and it can be set to up to 3600 seconds (1 hour).
Opt-in setup
Auto Start Tracking Enabled in the SDK settings to false, call the StartTracking function at the time when you can collect events. The SDK will start collecting events when the startTracking function is called.
Opt-out setup
Auto Start Tracking Enabled in the SDK settings to true, call the StopTracking function at the time when you can no longer collect events. The SDK will stop collecting events when the stopTracking function is called.
SDK Signature
sdkSignatureSecret.
Deep Linking
Deep linking allows you to redirect users from ads to specific locations within your app. The data collected from the tracking link enables you to monitor the performance of the deep link in Airbridge.How Airbridge Deep Links work
When a user clicks on the Airbridge tracking link, the scheme deep link embedded in the tracking link is converted into an Airbridge Deep Link, which can be either an HTTP deep link or a scheme deep link. This Airbridge Deep Link redirects the user to the desired app location. Then, the Airbridge SDK converts the Airbridge Deep Link back to the original scheme deep link embedded in the tracking link and passes it to the app.- Example scheme deep link embedded in the tracking link: YOUR_SCHEME://product/12345
-
Examples of Airbridge Deep Links
- HTTP deep link format 1: https://YOUR_APP_NAME.airbridge.io/~~~
- HTTP deep link format 2: https://YOUR_APP_NAME.abr.ge/~~~
- Scheme deep link format: YOUR_SCHEME://product/12345?airbridge_referrer=~~~

Set up deep linking
For the deep linking setup, the following information is required.- Deep link information submitted in the Airbridge dashboard
- In-app location address for user redirection
How to enter the deep link information into Airbridge dashboard
How to enter the deep link information into Airbridge dashboard
iOS
- iOS URI scheme: The Airbridge Deep Link is converted to a scheme deep link using the iOS URI scheme.
- iOS App ID: The universal link domain of the Airbridge Deep Link is set using the iOS App ID.
Android
- Android URI scheme: The Airbridge deep link is converted to a scheme deep link using the Android URI scheme. This information is necessary for the App Link and URI scheme.
- Package name: This is the Android app identifier necessary for the App Link and URI scheme.
- Android sha256_cert_fingerprints: This is used for setting the App Link domain. This information is necessary for the App Link.
iOS
- Navigate to [Tracking Link]>[Deep Links] in the Airbridge dashboard.
-
Enter the iOS URI scheme in the iOS URI Scheme field. Include
://. For example, if the iOS URI scheme isdemo, enterdemo://. - In the Apple Developer Dashboard, navigate to [Identifier] of the app you want to set up the deep link. Find the App ID Prefix and Bundle ID.
-
The iOS App ID is in the format of
App ID Prefix+ . + Bundle ID. Enter the iOS App ID into the iOS App ID field. For example, if the App ID Prefix isprefixand the Bundle ID isexample, the iOS App ID isprefix.example.
Android
For apps that use Google Play’s Play App Signing, Google’s servers re-sign the APK after the developer uploads it. This changes the Android sha256_cert_fingerprints, so you must register the final signing value from the Google Play Console—not from your local keystore—for App Links to work correctly. Register the Android URI scheme, package name, and Android sha256_cert_fingerprints in Airbridge according to your signing method.- Play App signing
- using original key
- Naviagate to [Tracking Link]>[Deep Links] in the Airbridge dashboard.
-
Enter the Android URI scheme into the Android URI Scheme field. Include
://. For example, if the URI scheme isdemo, you must enterdemo://. - Enter the package name in the Package name field.
- Go to the Google Play Console and select your app.
- Navigate to [App integrity].
-
Copy the SHA-256 certificate fingerprint from the App signing key certificate section.
AttentionMake sure to copy from the correct section. This page contains two certificate entries:
- App signing key certificate ← Use this value
- Upload key certificate ← Do NOT use this value
- Enter the SHA256 value into the sha256_cert_fingerprints field.
- App launch with Airbridge Deep Links
- Airbridge Deep Link event collection
- User redirection with Airbridge Deep Links
Enable app launch with Airbridge Deep Links
Enable app launch with Airbridge Deep Links
iOS
Unreal setup- Navigate to SDK settings in Unity.
- Enter the iOS URI scheme that you entered on the [Tracking Link]>[Deep Links] page in the Airbridge dashboard into the
iOS URI Schemefield.
- Navigate to [YOUR_PROJECT]>[Signing & Capabilities] in Xcode.
- Click + Capability to add Associated Domains.
- Add
applinks:YOUR_APP_NAME.airbridge.ioandapplinks:YOUR_APP_NAME.abr.geto Associated Domains.YOUR_APP_NAMEis the Airbridge App Name.
Android
Unreal setup- Navigate to SDK settings in Unity.
- Enter the Android URI scheme that you entered on the [Tracking Link]>[Deep Links] page in the Airbridge dashboard into the
Android URI Schemefield. The App Name value in the SDK settings will be used to set up the App Links automatically.
Route users with collected Airbridge deep links
Route users with collected Airbridge deep links
FAirbridge::SetOnDeeplinkReceived([](const FString& Url).Redirect the user through the collected Airbridge Deep Link
Redirect the user through the collected Airbridge Deep Link
- When the Airbridge Deep Link is executed, it is converted into a scheme deep link and passed to the
onDeeplinkReceivedcallback. And if a deep link that is not an Airbridge Deep Link is executed, it is passed to the callback without being converted. - Use the received deep link to redirect the user to the intended destination.
-
Navigate to
Content Browser > Add/Import > New C++ Class...and specify the parent class asGame Mode Baseto create a Game Mode Base class. - Proceed with the deep link callback setup through the following method in the source code of the created Game Mode Base class.
- In the Unreal Editor Project Settings window, navigate to
Project > Maps & Modes > Default Modesand set theDefault GameModefield value as the game mode after the deep link callback setup is completed.
Set up deferred deep linking
When a user clicks on a tracking link with deferred deep linking capabilities and the app is not installed on the device, the Airbridge SDK collects the deep link as follows.How the Airbridge SDK collects deferred deep links
How the Airbridge SDK collects deferred deep links
- The
FAirbridge::StartTrackingfunction is called with the opt-in settings in place. Or, opt-in has not been set. - The user’s response to the ATT prompt has been determined. Or, the event collection delay time configured regarding the ATT prompt has expired.
Set up custom domain
- Enter the custom domain address into the Airbridge dashboard by referring to this article
-
In the SDK Settings, enter the custom domain address in the
Custom Domain.AttentionThe custom domain address you add to the SDK should be the same as the custom domain address entered into the Airbridge dashboard.
In-app events
The Airbridge SDK collects user actions from the app as per settings and sends them as in-app events.Send in-app events
Airbridge.TrackEvent function must be called to send events. Refer to the information below about the required Airbridge.TrackEvent function components and their types.
Event Category
Event Category
Attributes
Attributes
- Action, Label: Collect information that can be used as GroupBys in the Airbridge reports
- Value: Collect information that can be used for sales analysis. Airbridge can perform calculations using the collected data.
- Semantic Attribute: Collect predefined attributes by Airbridge.
- Custom Attributes: Collect attributes defined by Airbridge users.
FAirbridge::TrackEvent function, you can enter Action, Label, Value, and Semantic Attributes using the semanticAttributes parameter and Custom Attributes using the customAttributes parameter.The semantic attributes predefined by Airbridge can be found in the user guide below.Please refer to the example below.- JSON types: String, Number, Boolean, Object<String, JSON>, Array<JSON>
- Types that cannot be used in semantic attributes and custom attributes: Struct, Class, etc.
Event Category of Standard Events provided by the SDK (AirbridgeCategory)
Event Category of Standard Events provided by the SDK (AirbridgeCategory)
Semantic Attributes provided by the SDK (AirbridgeAttribute)
Semantic Attributes provided by the SDK (AirbridgeAttribute)
Additional in-app event settings
Configure in-app event sessions
Configure in-app event sessions
Session Timeout Seconds up to 604,800 seconds (7 days).Configure in-app event transmission frequency
Configure in-app event transmission frequency
Event Transmit Interval Seconds to modify it to a maximum of 86,400 seconds (1 day).Configure in-app event storage
Configure in-app event storage
Buffer Count Limit, and to limit the storage size of the SDK, use the Event Buffer Size Limit In Gibibyte.Clear unsent in-app events
Clear unsent in-app events
Clear Event Buffer On Initialize Enabled to true to activate the event deletion option.Configure device IDs
Configure device IDs
| Function | Description |
|---|---|
FAirbridge::SetDeviceAlias | Adds additional device identifiers. Up to 10 identifiers can be entered. - Key: Maximum 128 characters. It must satisfy the regular expression ^[a-zA-Z_][a-zA-Z0-9_]*$.- Value: Maximum 128 characters. |
FAirbridge::RemoveDeviceAlias | Deletes only specified device identifiers. |
FAirbridge::ClearDeviceAlias | Deletes all device identifiers. |
Example Codes
Airbridge collects in-app events that are classified as Standard Events and Custom Events. Standard Events are events predefined by Airbridge. Refer to the example codes below.Sign Up, Sign In, Sign Out, Home viewed, Product list viewed
Sign Up, Sign In, Sign Out, Home viewed, Product list viewed
Sign Up
Sign In
Sign Out
Home viewed
Product list viewed
Search result viewed, Product viewed, Add payment info, Add to wishlist, Add to cart
Search result viewed, Product viewed, Add payment info, Add to wishlist, Add to cart
Search result viewed
Product viewed
Add payment info
Add to wishlist
Add to cart
Initiate checkout, Order completed, Order canceled, Start trial, Subscribe, Unsubscribe
Initiate checkout, Order completed, Order canceled, Start trial, Subscribe, Unsubscribe
Initiate checkout
Order completed
Order canceled
Start trial
Subscribe
Unsubscribe
Add impression, Ad click, Complete tutorial, Achieve level, Unlock achievement
Add impression, Ad click, Complete tutorial, Achieve level, Unlock achievement
Add impression
Ad click
Complete tutorial
Achieve level
Unlock achievement
User Data
Airbridge sends user data along with events. User data allows for a more accurate ad performance measurement.Set User ID
User IDs refer to the user identifier used in a service. User IDs should be unique IDs that can identify unique users across websites and apps.| Function | Description |
|---|---|
FAirbridge::SetUserID | Inputs the user ID. |
FAirbridge::ClearUserID | Deletes the user ID. |
FAirbridge::SetUserAlias | Adds additional user identifiers. Up to 10 items can be added. - key: Up to 128 characters. Must follow the regular expression ^[a-zA-Z_][a-zA-Z0-9_]*$.- value: Up to 1024 characters. |
FAirbridge::RemoveUserAlias | Deletes only specified identifiers. |
FAirbridge::ClearUserAlias | Deletes all additional user identifiers. |
Send additional user information
| Function | Description |
|---|---|
FAirbridge::SetUserEmail | Inputs user’s email. The data is hashed using SHA256. |
FAirbridge::ClearUserEmail | Deletes the user email. |
FAirbridge::SetUserPhone | Inputs user’s phone number. The data is hashed using SHA256. |
FAirbridge::ClearUserPhone | Deletes the user’s phone number. |
FAirbridge::SetUserAttribute | Adds additional user attributes. Up to 100 items can be added. - key: Up to 128 characters. Must satisfy the regular expression: ^[a-zA-Z_][a-zA-Z0-9_]*$.- value: Only supports string, number, and Boolean types. Up to 1024 characters. |
FAirbridge::RemoveUserAttribute | Deletes only specified attributes from the additional attributes. |
FAirbridge::ClearUserAttributes | Deletes all additional user attributes. |
Hash user information
WhenUser Info Hash Enabled is set to false in the SDK settings, user emails and phone numbers are passed without being hashed. The default setting is true.
Reset User Information
You can initialize user information with theFAirbridge::ClearUser function.
Include User Information in Install/Open Events
The SDK automatically sends install and open events immediately after the app launches. Therefore, if you call user information functions right after the app launches, the user information may not be included in the install/open events depending on the event transmission timing. To ensure user information is included in install/open events, control the timing of event transmission through Opt-In setup. Implement in the following order:- Set the
Auto Start Tracking Enabledoption tofalsewhen Configure SDK settings. - Call user information functions to set user information.
- Call the
startTracking()function to start event collection.
Additional SDK Settings
Follow the instructions below for additional setup.Calculating SKAdNetwork Conversion Value on the Server
By default, the ConversionValue in SKAdNetwork is calculated using the values from the SDK. If you want to measure events collected server-side through SKAN instead of the SDK, set thecalculateSKAdNetworkByServerEnabled option to true.
Restricting Identifier Tracking
You can prevent the SDK from collecting certain identifier data.Restricting Identifiers During SDK Initialization
Restricting Identifiers During SDK Initialization
Tracking Blocklist to specify which identifiers should be blocked. Events collected after this configuration will exclude the specified identifiers.Check the restricted data in the identifier restriction list.Restricting Identifiers During SDK runtime
Restricting Identifiers During SDK runtime
AllowTrackingItem and BlockTrackingItem functions to set the data to be restricted. The specified identifier items will be excluded or included. This does not affect events that have already been stored.Identifier Restriction List
Identifier Restriction List
SDK settings by build settings
Use Development Airbridge Settings or Use Production Airbridge Settings option, depending on your build setting to configure the SDK accordingly.
If the Use Development Airbridge Settings or Use Production Airbridge Settings option is inactive, the SDK settings are set to the Default settings.
-
When the Use Development Airbridge Settings is activated and your app is on development Debug, Development, or Test setting, the SDK settings are set to the Development settings.

- When the Use Production Airbridge Settings is activated and your app is on production Shipping setting, the SDK settings are set to the Production settings.
Integrate Google’s ICM attribution data
Create tracking links within the app
CreateTrackingLink function to create tracking links. Refer to the code examples and the parameter details below.
Option parameter in the CreateTrackingLink function to configure tracking link options.
Create trackingLink option
Create trackingLink option
| Key | Type | Description |
|---|---|---|
| AirbridgeTrackingLinkOption::CAMPAIGN | String | The campaign credited with the winning touchpoint or conversion. |
| AirbridgeTrackingLinkOption::AD_GROUP | String | The ad group credited with the winning touchpoint or conversion. |
| AirbridgeTrackingLinkOption::AD_CREATIVE | String | The ad creative credited with the winning touchpoint or conversion. |
| AirbridgeTrackingLinkOption::CONTENT | String | The content credited with the winning touchpoint or conversion. |
| AirbridgeTrackingLinkOption::TERM | String | The search term credited with the winning touchpoint or conversion. |
| AirbridgeTrackingLinkOption::SUB_ID | String | The sub publisher that generated the touchpoint. Sub media values are usually provided by predefined “integrated” channels. |
| AirbridgeTrackingLinkOption::SUB_ID_1 | String | The 1st level sub-sub publisher that generated the touchpoint. Sub media values are usually provided by predefined “integrated” channels. |
| AirbridgeTrackingLinkOption::SUB_ID_2 | String | The 2nd level sub-sub publisher that generated the touchpoint. Sub media values are usually provided by predefined “integrated” channels. |
| AirbridgeTrackingLinkOption::SUB_ID_3 | String | The 3rd level sub-sub publisher that generated the touchpoint. Sub media values are usually provided by predefined “integrated” channels. |
| AirbridgeTrackingLinkOption::DEEPLINK_URL | (Custom Scheme URL String) | Deeplink URL |
| AirbridgeTrackingLinkOption::DEEPLINK_STOPOVER | Boolean | Deeplink 의 스탑오버 기능 활성화 여부 true : 활성화 false : 비활성화 |
| AirbridgeTrackingLinkOption::FALLBACK_IOS | (“store” | Web URL String) | ios fallback when app is not installed |
| AirbridgeTrackingLinkOption::FALLBACK_ANDROID | (“store” | Web URL String) | android fallback when app is not installed |
| AirbridgeTrackingLinkOption::FALLBACK_DESKTOP | (Web URL String) | desktop fallback when app is not installed |
| AirbridgeTrackingLinkOption::FALLBACK_IOS_STORE_PPID | String | he ppid for the Custom Product Page in the Apple App Store. Enable the custom product page to be shown when landing in the App Store. |
| AirbridgeTrackingLinkOption::FALLBACK_ANDROID_STORE_LISTING | String | The Custom Store Listing listing value for the Google Play Store. Enables the display of your custom store listing when landing on the Google Play Store. |
| AirbridgeTrackingLinkOption::OGTAG_TITLE | String | og:title for tracking link |
| AirbridgeTrackingLinkOption::OGTAG_DESCRIPTION | String | og:description for tracking link |
| AirbridgeTrackingLinkOption::OGTAG_IMAGE_URL | (Web URL String) | og:image for tracking link |
| AirbridgeTrackingLinkOption::OGTAG_WEBSITE_CRAWL | (“desktop”) | When the tracking link is shared, the social media platform directly crawls the Open Graph of the desktop URL specified in fallbackPaths and uses it for the social share preview. Dynamic URLs are also supported, and any change to the Open Graph is reflected automatically from the next time the link is shared. The values set for title, description, and imageUrl will be ignored. |
| AirbridgeTrackingLinkOption::CUSTOM_SHORT_ID | String | Configure the short ID of tracking links depending on your campaign or contents. If not passed, a random short ID will be generate, and can not be changed once generated. |
| AirbridgeTrackingLinkOption::IS_REENGAGEMENT | (“off” | “on_true” | “on_false”) | Configure the Re-engagement parameter. The Re-engagement parameter has three options. off: OFF is the default setting. The touchpoint can be attributed to both install events and post-install events (in-app events). on_true: ON-TRUE is used for re-engagement campaigns for installed users. The touchpoint generated by the tracking link is attributed only to the deeplink open and the following in-app events, not to the install event. on_false: ON-FALSE is used for user acquisition campaigns targeting uninstalled users. The touchpoint generated by the tracking link is attributed only to the install event and the following in-app events, not to the ‘deeplink open’ event. |
OnSuccess callback in the CreateTrackingLink function to pass the FAirbridgeTrackingLink.
Create tracking links that launch the app or redirect users to the app store
Create tracking links that launch the app or redirect users to the app store
Create tracking links that launch the app or redirect users to a webpage
Create tracking links that launch the app or redirect users to a webpage
Create tracking links that redirect users to the app store only
Create tracking links that redirect users to the app store only
Create tracking links that redirect users to a webpage only
Create tracking links that redirect users to a webpage only
Receive Airbridge Deep Links only
The deep links passed through theAFAirbridge::SetOnDeeplinkReceived method of the Airbridge Unreal SDK include not only Airbridge Deep Links but also deep links from other solutions.
Is Handle Airbridge Deeplink Only to true in the SDK settings, only Airbridge Deep Links will be passed to the onDeeplinkReceived callback. In this way, you can handle the deep links from other solutions separately from the Airbridge Deep Links.
Use tracking links within the app
Depending on how the link is opened, it may be difficult to properly utilize the app’s tracking link in-app. TheFAirbridge::Click function or FAirbridge::Impression function allows you to utilize tracking links normally, bypassing the external browser.
When the user clicks a tracking link within the app
When the user clicks a tracking link within the app
FAirbridge::Click function. Depending on the tracking link settings, the scheme deep link is passed, or the user is redirected to the app store or website.When the user views a tracking link within the app
When the user views a tracking link within the app
FAirbridge::Impression function. Calling this function collects Impression event data.Get attribution results
FAirbridge::SetOnAttributionReceivedfunction.
When the attribution result exists
When the attribution result exists
attributedChannel contains information about the ad channel to which the ad performance is attributed.The attribution results are passed to the callback within 1 minute after SDK initialization. If the app is closed before the attribution result is passed, the previous attribution results will be passed to the callback within 1 minute the next time the app is launched. Depending on network conditions and other factors, there may be a delay of up to 5 minutes.When no attribution result exists (Organic)
When no attribution result exists (Organic)
Tracking Deeplink Opens with Push Notifications
FAirbridge::trackDeeplink function.
iOS
Add the code below to your custom AppDelegate.Track Only Airbridge Deep Links
The Airbridge SDK collects deep link events when the app is opened through a deep link, even if the deep link is not an Airbridge Deep Link. ConfigureTrack Airbridge Link Only in the SDK settings to true to collect deep link events only if the app is opened through an Airbridge Deep Link and prevent unnecessary event collection.
Collect in-session lifecycle events
The Airbridge SDK collects Open and Foreground events that initiate a new session. These events are not collected during an ongoing session. By configuring theTrack In Session Life Cycle Event Enabled in the SDK settings to true, the Open and Foreground events can be collected during ongoing sessions.
All collected Foreground events are recorded as Open events.
Compliance with Google DMA
To comply with the Digital Markets Act (DMA), the user consent data must be sent to Airbridge. For more information about the DMA and whether it applies to your service, refer to the Airbridge user guide.Collecting user consent data through consent management platforms
Collecting user consent data through consent management platforms
- In the SDK settings, set
Collect TCF Data EnabledtotrueandAuto Start Tracking Enabledtofalse.

- After the user consent data is stored in the consent management platform, call the
StartTrackingfunction.
Collecting user consent data using the FAirbridge::SetDeviceAlias function
Collecting user consent data using the FAirbridge::SetDeviceAlias function
- Check the location of the users who launched the app. If their location is within the EEA, check whether the user consent data has been previously collected. If not, user consent data collection is not required.
-
Configure the
Auto Start Tracking Enabledin the SDK settings tofalse.

- If no user consent data has been collected previously, you may collect the data using a prompt or other means. The user consent data fields that need to be collected are
adPersonalization,adUserData.
eea) to the Airbridge SDK using the FAirbridge::SetDeviceAlias function.| 에어브릿지 필드 이름 | 구글 필드 이름 | 설명 |
|---|---|---|
eea<string> | eea | 디지털 시장법 준수 지역 여부. - 0: 디지털 시장법 준수와 관계 없는 지역. EEA 지역에 해당하지 않음.- 1: 디지털 시장법 준수 지역. EEA 지역에 해당함. |
adPersonalization<string> | ad_personalization | 개인 맞춤형 광고 제공을 위한 정보 수집에 대한 동의 여부. - 0: 유저가 정보 수집에 동의하지 않음.- 1: 유저가 정보 수집에 동의함. |
adUserData<string> | ad_user_data | 유저 데이터를 구글에 전송하는 것에 대한 동의 여부. - 0: 유저가 전송에 동의하지 않음.- 1: 유저가 전송에 동의함. |
- After the user consent data and the user location data are sent to the Airbridge SDK, call the
StartTrackingfunction.
Set Up Meta deferred app links
Follow the steps below to use deferred deep linking in Meta ads. The Airbridge SDK collects the Meta deferred app links before the Airbridge deferred deep links. If there are no Meta deferred app links, the Airbridge deferred deep links are collected. Note that Meta does not support Meta deferred app links for SKAdNetwork campaigns.- Install the Facebook SDK. Refer to the Meta Ads Guide (iOS).
-
Configure the
Facebook Deferred App Link Enabledin the SDK settings totrue.
Initialize the Airbridge SDK with all functions disabled
SDK Enabled in the SDK settings to false, the SDK can be initialized with all functions disabled.
You can also check the activation status of the Airbridge SDK and enable or disable all functions, as in the following example.
Set up Meta Install Referrer collection
To collect the Meta Install Referrer, enter the Meta App ID as the key value forMeta Install Referrer (Facebook App ID) in the SDK settings.
Note that the decryption key must be submitted to the Airbridge dashboard to read the decrypted Meta Install Referrer. Refer to this user guide to learn how to enter the decryption key.
Set up uninstall tracking
Airbridge sends a silent push every day between 3:00 PM and 4:00 PM (UTC) to users who performed an app event at least once in the last 6 months to check if the app has been deleted. You can check the uninstall event in the Airbridge reports and raw data export files. Refer to the article below for the detailed setup instructions.Integrate with third-party solutions
An additional SDK setup is required to integrate with some third-party solutions. It is recommended that you complete this setup before collecting data with the Airbridge SDK. Refer to the articles listed below for integrating with third-party solutions.Third-party platforms integrated with Airbridge
Third-party platforms integrated with Airbridge
SDK logs
The logs provided by the Airbridge SDK are categorized intoDebug, Info, Warning, Error, and Fault levels. The Debug level is the least critical log, while the Fault level is the most critical log.
By default, the Airbridge SDK provides logs at Warning, Error, and Fault levels. By entering a specific log level as the Log Level value in the SDK settings, the logs from that specified level up to the Fault level will be available.