react-native-google-mobile-ads
    Preparing search index...

    Enumeration AdEventType

    Index
    CLICKED: "clicked"

    The user clicked the advert.

    CLOSED: "closed"

    The user closed the ad and has returned back to your application.

    ERROR: "error"

    The ad has thrown an error. See the error parameter the listener callback for more information.

    import { AdEventType } from 'react-native-google-mobile-ads';

    advert.addAdEventListener(AdEventType.ERROR, (error) => {
    console.log('Ad error:', error);
    });
    IMPRESSION: "impression"

    Called when an impression is recorded for an ad. No payload.

    LOADED: "loaded"

    When an ad has loaded. At this point, the ad is ready to be shown to the user.

    import { AdEventType } from 'react-native-google-mobile-ads';

    advert.addAdEventListener(AdEventType.LOADED, () => {
    advert.show().catch(console.warn);
    });
    OPENED: "opened"

    The ad opened and is currently visible to the user. This event is fired after the show() method has been called.

    PAID: "paid"