npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

capacitor-admob-ads

v5.0.0

Published

Capacitor plugin to display admob ads in your Ionic Apps

Downloads

119

Readme

capacitor-admob-ads

Capacitor plugin to display admob ads in your Ionic Apps

API for Banner, Interstitial, Rewarded Interstitial, Rewarded Video and Native Admob ads are available.

Install

npm install capacitor-admob-ads
npx cap sync

What is AdMob

Google AdMob makes it easy for developers to earn money from their mobile apps with high-quality ads. AdMob maximizes the value of every impression by combining global advertiser demand, innovative ad formats, and advanced app monetization technology.

Why show ads?

Showing ads to app users allows you to create a sustainable source of revenue to help grow your business while you focus on building and developing quality apps. Advertisers get to reach new customers, and users can discover relevant products and services – while enjoying apps for free. So it’s a win for everyone – developers, users, and advertisers.


Supported Platform

  • Android

Android Configuration

Update Manifest

Open your android/app/src/Android/AndroidManifest.xml file and add this meta-data line at the right spot (and replace the value by the actual App ID of your app):

<application>
  <!-- this line needs to be added (replace the value!) -->
  <meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" android:value="ca-app-pub-xxxxxxxxxxxxxxxx~yyyyyyyyyy" />  
</application>

API

ALWAYS USE TEST ADS WHILE DEVELOPING, TESTING, DEBUGGING.

Banner Ad

API to display banner ads in your apps.

By default, banner ad sits at the top or bottom of the screen (based on your ad position). You should add spacing (padding or margin) to your app content to avoid the overlap. Below you can find the size of each banner ad.

| Size in px (WxH) | Ad Size Name | | ------------- | ----------------------------------------------------------- | | 320x50 | BANNER| | 320x100 | LARGE_BANNER| | 300x250 | MEDIUM_RECTANGLE| | 468x60 | FULL_BANNER| | 728x90 | LEADERBOARD|

showBannerAd(...)

To show a banner ad call this method with the below options.

showBannerAd(options: BannerAdOptions) => Promise<void>

| Param | Type | Description | | ------------- | ----------------------------------------------------------- |------| | options | BannerAdOptions |Banned Ad Options|

BannerAdOptions

| Prop | Type |Description | | ---------------- | --------------------------------------------------------- |-----------| | adId | string |Banner ad ID that you get from Admob Console| | isTesting | boolean |Set to true while testing/debugging. Set to false for production apps | adSize | BannerSize | Banner ad size | adPosition | BannerPosition | Banner ad position

BannerSize

| Members | Value | | ----------------- | ------------------------------- | | BANNER | 'BANNER' | | LARGE_BANNER | 'LARGE_BANNER' | | MEDIUM_RECTANGLE | 'MEDIUM_RECTANGLE' | | FULL_BANNER | 'FULL_BANNER' | | LEADERBOARD | 'LEADERBOARD' |

BannerPosition

| Members | Value | | ------------ | --------------------- | | TOP | 'top' | | BOTTOM | 'bottom' |


hideBannerAd()

To hide a banner ad that is currently shown.

hideBannerAd() => Promise<void>

resumeBannerAd()

To resume a banner ad that is currently hidden.

resumeBannerAd() => Promise<void>

removeBannerAd()

To remove the banner ad that is currently shown.

removeBannerAd() => Promise<void>

addListener('bannerAdOpened', ...)

Triggers when a banner ad is opened.

addListener(eventName: 'bannerAdOpened', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ----------------------------- | | eventName | 'bannerAdOpened' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('bannerAdClicked', ...)

Triggers when a banner ad is clicked.

addListener(eventName: 'bannerAdClicked', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ------------------------------ | | eventName | 'bannerAdClicked' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('bannerAdImpression', ...)

Triggers when a banner ad registers an impression.

addListener(eventName: 'bannerAdImpression', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | --------------------------------- | | eventName | 'bannerAdImpression' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('bannerAdClosed', ...)

Triggers when a banner ad is closed.

addListener(eventName: 'bannerAdClosed', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ----------------------------- | | eventName | 'bannerAdClosed' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


Banner Ad Example

import { AdmobAds, BannerPosition, BannerSize } from "capacitor-admob-ads";

// To show a banner ad
AdmobAds.showBannerAd({ adId: "ca-app-pub-3940256099942544/6300978111", isTesting: true, adSize: BannerSize.BANNER, adPosition: BannerPosition.BOTTOM }).then(() => {
   console.log('Banner Ad Shown');
}).catch(err => {
   console.log(err.message);
});

// To hide a banner ad
 AdmobAds.hideBannerAd().then(() => {
   console.log('Banner Ad Hidden')
}).catch(err => {
   console.log(err.message);
});

// To resume a hidden banner ad
AdmobAds.resumeBannerAd().then(() => {
   console.log('Banner Ad Resumed');
}).catch(err => {
   console.log(err.message);
});

// To remove a banner ad
AdmobAds.removeBannerAd().then(() => {
   console.log('Banner Ad Removed');
}).catch(err => {
   console.log(err.message);
});

// Event Listeners
AdmobAds.addListener("bannerAdOpened", () => {
   console.log('Banner Ad Opened');
});

AdmobAds.addListener("bannerAdClicked", () => {
   console.log('Banner Ad Clicked');
});

AdmobAds.addListener("bannerAdImpression", () => {
   console.log('Banner Ad Impression');
});

AdmobAds.addListener("bannerAdClosed", () => {
   console.log('Banner Ad Closed');
});

Interstitial Ad

API to display interstitial ads in your apps.

loadInterstitialAd(...)

To load an interstitial ad call this method with the below options (You have to load an ad before showing it).

loadInterstitialAd(options: InterstitialAdOptions) => Promise<void>

| Param | Type |Description| | ------------- | ----------------------------------------------------------------------- |-----------| | options | InterstitialAdOptions |Interstitial Ad Options

InterstitialAdOptions

| Prop | Type |Description| | --------------- | -------------------- |-----| | adId | string |Interstitial ad ID that you get from Admob Console| | isTesting | boolean |Set to true while testing/debugging. Set to false for production apps

showInterstitialAd()

To show an already loaded interstitial ad use this method.

showInterstitialAd() => Promise<void>

addListener('interstitialAdClicked', ...)

Triggers when an interstitial ad is clicked.

addListener(eventName: 'interstitialAdClicked', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ------------------------------------ | | eventName | 'interstitialAdClicked' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('interstitialAdDismissed', ...)

Triggers when an interstitial ad is dismissed.

addListener(eventName: 'interstitialAdDismissed', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | -------------------------------------- | | eventName | 'interstitialAdDismissed' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('interstitialAdFailedToShow', ...)

Triggers when an interstitial ad is failed to show.

addListener(eventName: 'interstitialAdFailedToShow', listenerFunc: (error: { message: string; }) => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ----------------------------------------------------- | | eventName | 'interstitialAdFailedToShow' | | listenerFunc | (error: { message: string; }) => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('interstitialAdImpression', ...)

Triggers when an interstitial ad registers impression.

addListener(eventName: 'interstitialAdImpression', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | --------------------------------------- | | eventName | 'interstitialAdImpression' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('interstitialAdShowed', ...)

Triggers when an interstitial ad is showed.

addListener(eventName: 'interstitialAdShowed', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ----------------------------------- | | eventName | 'interstitialAdShowed' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


Interstitial Ad Example

import { AdmobAds } from "capacitor-admob-ads";

// To load an interstital ad
AdmobAds.loadInterstitialAd({ adId: "ca-app-pub-3940256099942544/1033173712", isTesting: true }).then(() => {
   console.log('Interstitial Ad Loaded');
}).catch(err => {
   console.log(err.message);
});

// To show an already loaded interstitial ad
AdmobAds.showInterstitialAd().then(() => {
   console.log('Interstitial Ad Shown');
}).catch(err => {
   console.log(err.message);
});

// Event listeners
AdmobAds.addListener("interstitialAdClicked", () => {
   console.log('Interstitial Ad Clicked');
});

AdmobAds.addListener("interstitialAdDismissed", () => {
   console.log('Interstitial Ad Dismissed');
});

AdmobAds.addListener("interstitialAdFailedToShow", () => {
   console.log('Interstitial Ad Failed To Show');
});

AdmobAds.addListener("interstitialAdImpression", () => {
   console.log('Interstitial Ad Impression');
});

AdmobAds.addListener("interstitialAdShowed", () => {
   console.log('Interstitial Ad Showed');
});

Rewarded Interstitial Ad

API to display rewarded interstitial ads in your apps.

loadRewardedInterstitialAd(...)

To load a rewarded interstitial ad call this method with the below options (You have to load an ad before showing it).

loadRewardedInterstitialAd(options: RewaredInterstitialAdOptions) => Promise<void>

| Param | Type |Description| | ------------- | ------------------------------------------------------------------------------------- |-----------| | options | RewaredInterstitialAdOptions |Rewarded Interstitial Ad Options

RewaredInterstitialAdOptions

| Prop | Type |Description| | --------------- | -------------------- |-----| | adId | string |Rewarded Interstitial ad ID that you get from Admob Console| | isTesting | boolean |Set to true while testing/debugging. Set to false for production apps


showRewardedInterstitialAd()

To show an already loaded rewarded interstitial ad use this method.

showRewardedInterstitialAd() => Promise<void>

addListener('rewardedInterstitialAdShowed', ...)

Triggers when a rewarded interstitial ad is showed.

addListener(eventName: 'rewardedInterstitialAdShowed', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ------------------------------------------- | | eventName | 'rewardedInterstitialAdShowed' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('rewardedInterstitialAdFailedToShow', ...)

Triggers when a rewarded interstitial ad is fail to show.

addListener(eventName: 'rewardedInterstitialAdFailedToShow', listenerFunc: (error: { message: string; }) => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ----------------------------------------------------- | | eventName | 'rewardedInterstitialAdFailedToShow' | | listenerFunc | (error: { message: string; }) => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('rewardedInterstitialAdDismissed', ...)

Triggers when a rewarded interstitial ad is dismissed.

addListener(eventName: 'rewardedInterstitialAdDismissed', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ---------------------------------------------- | | eventName | 'rewardedInterstitialAdDismissed' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('rewardedInterstitialAdClicked', ...)

Triggers when a rewarded interstitial ad is clicked.

addListener(eventName: 'rewardedInterstitialAdClicked', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | -------------------------------------------- | | eventName | 'rewardedInterstitialAdClicked' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('rewardedInterstitialAdImpression', ...)

Triggers when a rewarded interstitial ad registers impression.

addListener(eventName: 'rewardedInterstitialAdImpression', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ----------------------------------------------- | | eventName | 'rewardedInterstitialAdImpression' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('rewardedInterstitialAdOnRewarded', ...)

Triggers when a rewarded interstitial ad is rewarded.

addListener(eventName: 'rewardedInterstitialAdOnRewarded', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ----------------------------------------------- | | eventName | 'rewardedInterstitialAdOnRewarded' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


Rewarded Interstitial Ad Example

import { AdmobAds } from "capacitor-admob-ads";

// To load a rewarded interstitial ad
AdmobAds.loadRewardedInterstitialAd({ adId: "ca-app-pub-3940256099942544/5354046379", isTesting: true }).then(() => {
   console.log('Rewarded Interstitial Ad Loaded');
}).catch(err => {
   console.log(err.message);
});

// To show an already loaded rewarded interstitial ad
AdmobAds.showRewardedInterstitialAd().then(() => {
   console.log('Rewarded Interstitial Ad Shown');
}).catch(err => {
   console.log(err.message);
});

// Event listeners
AdmobAds.addListener("rewardedInterstitialAdShowed", () => {
   console.log('Rewarded Interstitial Ad Showed');
});

AdmobAds.addListener("rewardedInterstitialAdFailedToShow", () => {
   console.log('Rewarded Interstitial Ad Fail To Show');
});

AdmobAds.addListener("rewardedInterstitialAdDismissed", () => {
   console.log('Rewarded Interstitial Ad Dismissed');
});

AdmobAds.addListener("rewardedInterstitialAdClicked", () => {
   console.log('Rewarded Interstitial Ad Clicked');
});

AdmobAds.addListener("rewardedInterstitialAdImpression", () => {
   console.log('Rewarded Interstitial Ad Impression');
});

AdmobAds.addListener("rewardedInterstitialAdOnRewarded", () => {
   console.log('Rewarded Interstitial Ad Rewarded');
});

Rewarded Video Ad

API to display rewarded Video ads in your apps.

loadRewardedVideoAd(...)

To load a rewarded video ad call this method with the below options (You have to load an ad before showing it).

loadRewardedVideoAd(options: RewaredVideoAdOptions) => Promise<void>

| Param | Type |Description| | ------------- | ------------------------------------------------------------------------------------- |-----------| | options | RewaredVideoAdOptions |Rewarded Video Ad Options

RewaredVideoAdOptions

| Prop | Type |Description| | --------------- | -------------------- |-----| | adId | string |Rewarded Video ad ID that you get from Admob Console| | isTesting | boolean |Set to true while testing/debugging. Set to false for production apps


showRewardedVideoAd()

To show an already loaded rewarded video ad use this method.

showRewardedVideoAd() => Promise<void>

addListener('rewardedVideoAdShowed', ...)

Triggers when a rewarded video ad is showed.

addListener(eventName: 'rewardedVideoAdShowed', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ------------------------------------------- | | eventName | 'rewardedVideoAdShowed' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('rewardedVideoAdFailedToShow', ...)

Triggers when a rewarded video ad is fail to show.

addListener(eventName: 'rewardedVideoAdFailedToShow', listenerFunc: (error: { message: string; }) => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ----------------------------------------------------- | | eventName | 'rewardedVideoAdFailedToShow' | | listenerFunc | (error: { message: string; }) => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('rewardedVideoAdDismissed', ...)

Triggers when a rewarded video ad is dismissed.

addListener(eventName: 'rewardedVideoAdDismissed', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ---------------------------------------------- | | eventName | 'rewardedVideoAdDismissed' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('rewardedVideoAdClicked', ...)

Triggers when a rewarded video ad is clicked.

addListener(eventName: 'rewardedVideoAdClicked', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | -------------------------------------------- | | eventName | 'rewardedVideoAdClicked' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('rewardedVideoAdImpression', ...)

Triggers when a rewarded video ad registers impression.

addListener(eventName: 'rewardedVideoAdImpression', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ----------------------------------------------- | | eventName | 'rewardedVideoAdImpression' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


addListener('rewardedVideoAdOnRewarded', ...)

Triggers when a rewarded video ad is rewarded.

addListener(eventName: 'rewardedVideoAdOnRewarded', listenerFunc: () => void) => Promise<PluginListenerHandle> & PluginListenerHandle

| Param | Type | | ------------------ | ----------------------------------------------- | | eventName | 'rewardedVideoAdOnRewarded' | | listenerFunc | () => void |

Returns: Promise<PluginListenerHandle> & PluginListenerHandle


Rewarded Video Ad Example

import { AdmobAds } from "capacitor-admob-ads";

// To load a rewarded video ad
AdmobAds.loadRewardedVideoAd({ adId: "ca-app-pub-3940256099942544/5224354917", isTesting: true }).then(() => {
   console.log('Rewarded Video Ad Loaded');
}).catch(err => {
   console.log(err.message);
});

// To show an already loaded rewarded video ad
AdmobAds.showRewardedVideoAd().then(() => {
   console.log('Rewarded Video Ad Shown');
}).catch(err => {
   console.log(err.message);
});

// Event listeners
AdmobAds.addListener("rewardedVideoAdShowed", () => {
   console.log('Rewarded Video Ad Showed');
});

AdmobAds.addListener("rewardedVideoAdFailedToShow", () => {
   console.log('Rewarded Video Ad Fail To Show');
});

AdmobAds.addListener("rewardedVideoAdDismissed", () => {
   console.log('Rewarded Video Ad Dismissed');
});

AdmobAds.addListener("rewardedVideoAdClicked", () => {
   console.log('Rewarded Video Ad Clicked');
});

AdmobAds.addListener("rewardedVideoAdImpression", () => {
   console.log('Rewarded Video Ad Impression');
});

AdmobAds.addListener("rewardedVideoAdOnRewarded", () => {
   console.log('Rewarded Video Ad Rewarded');
});

Native Ad

API to display admob native ads in your apps.

loadNativeAd(...)

To load a native ad use this method.

loadNativeAd(options: NativeAdOptions) => Promise<{ ads: AdResult[]; }>

| Param | Type |Description| | ------------- | ----------------------------------------------------------- |-----------| | options | NativeAdOptions |Native Ad Options

NativeAdOptions

| Prop | Type |Description| | --------------- | ---------------------------------- |-----------| | adId | string |Native ad ID that you get from Admob Console| | isTesting | boolean |Set to true while testing/debugging. Set to false for production apps | adsCount | 1 | 2 | 5 | 4 | 3 |Number of ads to return

Returns: Promise<{ ads: AdResult[]; }>

AdResult

| Prop | Type | Description| | ------------------ | ------------------- |------------| | id | string | Unique ad ID that is used to trigger a native ad | headline | string | Headline of a native ad | body | string |Body text of a native ad | advertiser | string |Native ad advertiser name | icon | string |Icon image link | cover | string |Cover image link | cta | string |Call to Action button text | adChoicesUrl | string | Ad choices URL of admob

triggerNativeAd(...)

To trigger (open) a native ad use this method

triggerNativeAd(options: NativeAdTriggerOptions) => void

| Param | Type | | ------------- | ------------------------------------------------------------------------- | | options | NativeAdTriggerOptions |

NativeAdTriggerOptions

| Prop | Type | Description| | -------- | ------------------- |------------| | id | string |Unique ad Id to open the native ad

Native Ad Example

import { AdmobAds } from "capacitor-admob-ads";

ads:Array<any> = [];

// To load native ads
AdmobAds.loadNativeAd({ adId: "ca-app-pub-3940256099942544/2247696110", isTesting: true, adsCount: 3 }).then((res) => {
   this.ads = res.ads;

   this.ads.forEach(ad => {
      console.log(ad['id']); 
      console.log(ad['headline']);
      console.log(ad['body']);
      console.log(ad['icon']);
      console.log(ad['cover']);
      console.log(ad['advertiser']);
      console.log(ad['cta']); 
      console.log(ad['adChoicesUrl']);
   });
}).catch((error) => {
   consol.log(error.message);
});

// To open a native ad
viewAd(id) {
   AdmobAds.triggerNativeAd({ id: id }); 
}

// To open AdChoices url
openAdchoices(url) {
   window.open(url);
}
<ion-card *ngFor="let ad of ads">
  <ion-card-header mode="md">
    <ion-item lines="none">
      <ion-avatar slot="start">
        <ion-img src="{{ad.icon}}" crossorigin="Anonymous">
        </ion-img>
      </ion-avatar>
      <ion-label>
        <h2>{{ad.headline}}
        </h2>
        <p>
          {{ad.advertiser}}
        </p>
      </ion-label>
      <ion-icon slot="end" src="/assets/icon/adchoices.svg" (click)="openAdchoices(ad.adChoicesUrl)">
      </ion-icon>
    </ion-item>
  </ion-card-header>

  <ion-card-content mode="md">
    <p class="ion-text-wrap">
      {{ad.body}}
    </p>

    <ion-img src="{{ad.cover}}" crossorigin="anonymous"></ion-img>

    <ion-chip (click)="viewAd(ad.id)" slot="end">
      <ion-label> {{ad.cta}} </ion-label>
    </ion-chip>
  </ion-card-content>
</ion-card>

Remove Listeners

To remove subscribed listeners use this method

removeAllListeners()

removeAllListeners() => Promise<void>

Example

import { AdmobAds } from "capacitor-admob-ads";

// To remove specifi listener
let rewardListener = AdmobAds.addListener("rewardedInterstitialAdOnRewarded", () => {
   console.log('Rewarded Interstitial Ad Rewarded');
});

rewardListener.remove();

// To remove all listeners
AdmobAds.removeAllListeners();