Managed Consent
Handle consent using managed consent
Introduction
AATKit’s Managed Consent is an easy way to facilitate IAB TCF compliant third-party Consent Management Platforms (CMPs) by providing a unified API and wrappers. In order to make use of Managed Consent, AATKit React Native plugin provides CMP implementations.
Google CMP Usage
Android requires appId to be added to the AndroidManifest
file, like
For iOS you need to set the GADApplicationIdentifier
value to the Info.plist
file, like:
Uncomment configureGoogleCMP
method call in initAATKit
:
Source Point CMP Usage
Uncomment configureSourcePointCMP
method call in initAATKit
, also make sure you pass all required parameters:
Not using the CMP wrapper
If for some reason you do not want to use CMP wrappers, AATKit also provides another methods for GDPR compliance. The isConsentRequired
configuration parameter allows you to inform AATKit if the user is subject to the GDPR laws:
Last updated