Kochava SDK and Consent Handling

As the Kochava SDK deals with GDPR-sensitive data, there are two approaches available for initializing the Kochava SDK when consent handling is necessary. The following document describes the different approaches to consent handling.


Self-Managed Consent

Use this approach if you plan to handle consent requirements on your own or using a 3rd party SDK. In this case, the Kochava SDK should simply not be initialized until after you have determined that consent is either not required or has been granted. It should never be initialized if consent is required and has not been granted, as the SDK would potentially begin transmitting GDPR-sensitive data without consent.

The pseudocode sample below illustrates when you should initialize the Kochava SDK under typical consent scenarios.

 

Pseudocode:

// ...
// your own logic or 3rd party SDK might determine if consent is required for this user
If(ConsentIsRequired == true) {
     // consent is required and consent should be granted before initializing the Kochava SDK     
     // (at this point your own logic might prompt for consent and await a response)
} else {
     // consent is not required, ok to proceed with Kochava SDK initialization
     Kochava.Tracker.Configure();
}
// …
// when consent is required we have a method called when the user grants consent
void ConsentWasGranted() {
     // the user has granted consent, we can configure and initialize the Kochava SDK now
    Kochava.Tracker.Configure();
}

NOTE: If handling consent independently, the app should never make use of the consent-related API calls within the Kochava SDK unless you have enabled the Intelligent Consent Management feature described below. If ICM is not enabled, consent-related API calls have no effect.


Intelligent Consent Management

Free App Analytics offers an Intelligent Consent Management (ICM) feature which can be leveraged to fully manage your GDPR consent requirements for your app and all of your SDKs. By using this feature the Kochava SDK will determine if, when and how often a user should be prompted for consent while also managing your data sharing partner list. Our Intelligent Consent Management provides far more functionality than simply notifying you when a user in the European Union (EU) and removes much of the burden associated with GDPR consent handling.

For more information on Intelligent Consent Management, refer to our Intelligent Consent Management support documentation.

 
 

Last Modified: Oct 18, 2023 at 8:08 am