API reference
API reference
Select your platform
No SDKs available
No versions available

ovr_ApplicationLifecycle_LogDeeplinkResult Function

Logs if the user successfully deeplinked to a destination. This function takes two parameters: a string tracking ID and a launch result. The tracking ID is used to identify the specific deeplink attempt, while the launch result indicates whether the deeplink was ovrLaunchResult_Success() or not. By logging this information, you can track the effectiveness of your deeplinking efforts and make adjustments as needed.

Signature

void ovr_ApplicationLifecycle_LogDeeplinkResult(const char *trackingID, ovrLaunchResult result)

Parameters

trackingID: const char * The Tracking ID is a unique identifier assigned to each deeplink attempt. It allows developers to track the success or failure of individual deeplink attempts and gain insights into the effectiveness of their deeplinking efforts.
result: ovrLaunchResult An enum that indicates the outcome of an attempt to launch this application through a deeplink, including whether the attempt was ovrLaunchResult_Success() or not, and if not, the specific reasons for the failure.

Returns

void