Wiki

Clone wiki

REACT native plugin / managedConsentCMPFailedToShow

Overview

Notifies that the used CMP failed to show.

Examples

#!javascript

import RNAatkit from '@addapptr/react-native-aatkit'
import { NativeEventEmitter, NativeModules } from 'react-native';
const aatkitEmitter = new NativeEventEmitter(RNAatkit);

const subscription = aatkitEmitter.addListener(
    'managedConsentCMPFailedToShow',
    () => {
        console.log("managedConsentCMPFailedToShow");
    }
);

Updated