Simple Consent
Handle consent using AATKit simple consent
Introduction
Usage
func configureAATKit() {
let configuration = AATConfiguration()
...
let consent = AATSimpleConsent(nonIABConsent: .obtained)
configuration.consent = consent
...
AATSDK.initAATKit(with: configuration)
}- (void)configureAATKit {
AATConfiguration* configuration = [[AATConfiguration alloc] init];
...
AATSimpleConsent *consent = [[AATSimpleConsent alloc] initWithNonIABConsent:NonIABConsentObtained];
configuration.consent = consent;
...
[AATSDK initAATKitWith:configuration];
}Last updated