Simple Consent
Handle consent using AATKit simple consent
Introduction
Usage
private void configureAATKit() {
AATKitConfiguration configuration = new AATKitConfiguration(this);
...
Consent consent = new SimpleConsent(NonIABConsent.OBTAINED);
configuration.setConsent(consent);
...
AATKit.init(configuration);
}private fun configureAATKit() {
val configuration = AATKitConfiguration(this)
...
val consent: Consent = SimpleConsent(NonIABConsent.OBTAINED)
configuration.consent = consent
...
AATKit.init(configuration)
}Last updated