Wiki

Clone wiki

REACT native plugin / reconfigureUsingConfiguration

Overview

Update AATKit consent arguments after the AATKit is already initialized.

Syntax

reconfigureUsingConfiguration(config)
config (required)

The JSON object containing configuration. Set parameters listed here, otherwise AATKit uses default values.

Examples

#!javascript

RNAatkit.reconfigureUsingConfiguration({
    consent: {
        type: RNAatkit.ConsentType_SimpleConsent,
        nonIABConsent: RNAatkit.SimpleConsent_Obtained
    }
});

Updated