A native plugin for AdMob
npm install @capacitor-community/admob
@capacitor-community/admob
Capacitor community plugin for native AdMob.
| Maintainer | GitHub | Social | Sponsoring Company |
| ------------------- | ------------------------------------------------ | ----------------------------------------------- | ---------------------------------------------- |
| Masahiko Sakakibara | rdlabo | @rdlabo | RELATION DESIGN LABO, GENERAL INC. ASSOCIATION |
| Saninn Salas Diaz | Saninn Salas Diaz | @SaninnSalas | |
Maintenance Status: Actively Maintained
Made with contributors-img.
| | Banner | Interstitial | Reward |
| :---------- | :----------------------------------: | :----------------------------------------: | :----------------------------------: |
| iOS |  |  |  |
| Android |  |  |  |
If you use capacitor 6:
```
% npm install --save @capacitor-community/admob@6
% npx cap update
In file android/app/src/main/AndroidManifest.xml, add the following XML elements under :
`xml`
android:value="@string/admob_app_id"/>
In file android/app/src/main/res/values/strings.xml add the following lines :
`xml`
Don't forget to replace [APP_ID] by your AdMob application Id.
#### Variables
This plugin will use the following project variables (defined in your app's variables.gradle file):
- playServicesAdsVersion version of com.google.android.gms:play-services-ads (default: 23.0.0)androidxCoreKTXVersion
- : version of androidx.core:core-ktx (default: 1.13.0)
Add the following in the ios/App/App/info.plist file inside of the outermost :
`xml`
Don't forget to replace [APP_ID] by your AdMob application Id.
`ts
import { AdMob } from '@capacitor-community/admob';
export async function initialize(): Promise
await AdMob.initialize();
const [trackingInfo, consentInfo] = await Promise.all([
AdMob.trackingAuthorizationStatus(),
AdMob.requestConsentInfo(),
]);
if (trackingInfo.status === 'notDetermined') {
/**
* If you want to explain TrackingAuthorization before showing the iOS dialog,
* you can show the modal here.
* ex)
* const modal = await this.modalCtrl.create({
* component: RequestTrackingPage,
* });
* await modal.present();
* await modal.onDidDismiss(); // Wait for close modal
**/
await AdMob.requestTrackingAuthorization();
}
const authorizationStatus = await AdMob.trackingAuthorizationStatus();
if (
authorizationStatus.status === 'authorized' &&
consentInfo.isConsentFormAvailable &&
consentInfo.status === AdmobConsentStatus.REQUIRED
) {
await AdMob.showConsentForm();
}
}
`
Send an array of device Ids in testingDevices to use production like ads on your specified devices -> https://developers.google.com/admob/android/test-ads#enable_test_devices
To use UMP, you must create your GDPR messages.
You may need to setup IDFA messages, it will work along with GDPR messages and will show when users are not in EEA and UK.
Example of how to use UMP.
`ts
import { AdMob } from '@capacitor-community/admob';
private canShowAds: boolean | null = null;
async showConsent() {
let consentInfo = await AdMob.requestConsentInfo();
if (!consentInfo.canRequestAds) {
consentInfo = await AdMob.showConsentForm();
this.canShowAds = consentInfo.canRequestAds;
}
}
`
To let users manage their privacy options at any time, show the privacy options form.
`ts
import { AdMob } from '@capacitor-community/admob';
showPrivacyOptionsForm() {
AdMob.showPrivacyOptionsForm();
}
`
If you testing on real device, you have to set debugGeography and add your device ID to testDeviceIdentifiers. You can find your device ID with logcat (Android) or XCode (iOS).
`ts`
const consentInfo = await AdMob.requestConsentInfo({
debugGeography: AdmobConsentDebugGeography.EEA,
testDeviceIdentifiers: ['YOUR_DEVICE_ID'],
});
Note: When testing, if you choose not consent (Manage -> Confirm Choices). The ads may not load/show. Even on testing enviroment. This is normal. It will work on Production so don't worry.
Note: The order in which they are combined with other methods is as follows.
1. AdMob.initialize
2. AdMob.requestConsentInfo
3. AdMob.showConsentForm (If consent form required )
3/ AdMob.showBanner
`ts
import {
AdMob,
BannerAdOptions,
BannerAdSize,
BannerAdPosition,
BannerAdPluginEvents,
AdMobBannerSize,
} from '@capacitor-community/admob';
export async function banner(): Promise
AdMob.addListener(BannerAdPluginEvents.Loaded, () => {
// Subscribe Banner Event Listener
});
AdMob.addListener(
BannerAdPluginEvents.SizeChanged,
(size: AdMobBannerSize) => {
// Subscribe Change Banner Size
},
);
const options: BannerAdOptions = {
adId: 'YOUR ADID',
adSize: BannerAdSize.BANNER,
position: BannerAdPosition.BOTTOM_CENTER,
margin: 0,
// isTesting: true
// npa: true
};
AdMob.showBanner(options);
}
`
`ts
import {
AdMob,
AdOptions,
AdLoadInfo,
InterstitialAdPluginEvents,
} from '@capacitor-community/admob';
export async function interstitial(): Promise
AdMob.addListener(InterstitialAdPluginEvents.Loaded, (info: AdLoadInfo) => {
// Subscribe prepared interstitial
});
const options: AdOptions = {
adId: 'YOUR ADID',
// isTesting: true
// npa: true
// immersiveMode: true
};
await AdMob.prepareInterstitial(options);
await AdMob.showInterstitial();
}
`
`ts
import {
AdMob,
RewardAdOptions,
AdLoadInfo,
RewardAdPluginEvents,
AdMobRewardItem,
} from '@capacitor-community/admob';
export async function rewardVideo(): Promise
AdMob.addListener(RewardAdPluginEvents.Loaded, (info: AdLoadInfo) => {
// Subscribe prepared rewardVideo
});
AdMob.addListener(
RewardAdPluginEvents.Rewarded,
(rewardItem: AdMobRewardItem) => {
// Subscribe user rewarded
console.log(rewardItem);
},
);
const options: RewardAdOptions = {
adId: 'YOUR ADID',
// isTesting: true
// npa: true
// immersiveMode: true
// ssv: {
// userId: "A user ID to send to your SSV"
// customData: JSON.stringify({ ...MyCustomData })
//}
};
await AdMob.prepareRewardVideoAd(options);
const rewardItem = await AdMob.showRewardVideoAd();
}
`
SSV callbacks are only fired on Production Adverts, therefore test Ads will not fire off your SSV callback.
For E2E tests or just for validating the data in your RewardAdOptions work as expected, you can add a custom GETRewardAdPluginEvents.Rewarded
request to your mock endpoint after the similar to this:
`tshttps://your-staging-ssv-endpoint
AdMob.addListener(RewardAdPluginEvents.Rewarded, async () => {
// ...
if (ENVIRONMENT_IS_DEVELOPMENT) {
try {
const url =
+`
new URLSearchParams({
ad_network: 'TEST',
ad_unit: 'TEST',
custom_data: customData, // <-- passed CustomData
reward_amount: 'TEST',
reward_item: 'TEST',
timestamp: 'TEST',
transaction_id: 'TEST',
user_id: userId, // <-- Passed UserID
signature: 'TEST',
key_id: 'TEST',
});
await fetch(url);
} catch (err) {
console.error(err);
}
}
// ...
});
* initialize(...)
* trackingAuthorizationStatus()
* requestTrackingAuthorization()
* setApplicationMuted(...)
* setApplicationVolume(...)
* showBanner(...)
* hideBanner()
* resumeBanner()
* removeBanner()
* addListener(BannerAdPluginEvents.SizeChanged, ...)
* addListener(BannerAdPluginEvents.Loaded, ...)
* addListener(BannerAdPluginEvents.FailedToLoad, ...)
* addListener(BannerAdPluginEvents.Opened, ...)
* addListener(BannerAdPluginEvents.Closed, ...)
* addListener(BannerAdPluginEvents.AdImpression, ...)
* requestConsentInfo(...)
* showPrivacyOptionsForm()
* showConsentForm()
* resetConsentInfo()
* prepareInterstitial(...)
* showInterstitial()
* addListener(InterstitialAdPluginEvents.FailedToLoad, ...)
* addListener(InterstitialAdPluginEvents.Loaded, ...)
* addListener(InterstitialAdPluginEvents.Dismissed, ...)
* addListener(InterstitialAdPluginEvents.FailedToShow, ...)
* addListener(InterstitialAdPluginEvents.Showed, ...)
* prepareRewardVideoAd(...)
* showRewardVideoAd()
* addListener(RewardAdPluginEvents.FailedToLoad, ...)
* addListener(RewardAdPluginEvents.Loaded, ...)
* addListener(RewardAdPluginEvents.Rewarded, ...)
* addListener(RewardAdPluginEvents.Dismissed, ...)
* addListener(RewardAdPluginEvents.FailedToShow, ...)
* addListener(RewardAdPluginEvents.Showed, ...)
* prepareRewardInterstitialAd(...)
* showRewardInterstitialAd()
* addListener(RewardInterstitialAdPluginEvents.FailedToLoad, ...)
* addListener(RewardInterstitialAdPluginEvents.Loaded, ...)
* addListener(RewardInterstitialAdPluginEvents.Rewarded, ...)
* addListener(RewardInterstitialAdPluginEvents.Dismissed, ...)
* addListener(RewardInterstitialAdPluginEvents.FailedToShow, ...)
* addListener(RewardInterstitialAdPluginEvents.Showed, ...)
* Interfaces
* Type Aliases
* Enums
`typescript`
initialize(options?: AdMobInitializationOptions | undefined) => Promise
Initialize AdMob with AdMobInitializationOptions
| Param | Type | Description |
| ------------- | --------------------------------------------------------------------------------- | -------------------------------------------------------------------- |
| options | AdMobInitializationOptions | AdMobInitializationOptions |
Since: 1.1.2
--------------------
`typescript`
trackingAuthorizationStatus() => Promise
Confirm requestTrackingAuthorization status (iOS >14)
Returns: Promise<TrackingAuthorizationStatusInterface>
Since: 3.1.0
--------------------
`typescript`
requestTrackingAuthorization() => Promise
request requestTrackingAuthorization (iOS >14).
Since: 5.2.0
--------------------
`typescript`
setApplicationMuted(options: ApplicationMutedOptions) => Promise
Report application mute state to AdMob SDK
| Param | Type |
| ------------- | --------------------------------------------------------------------------- |
| options | ApplicationMutedOptions |
Since: 4.1.1
--------------------
`typescript`
setApplicationVolume(options: ApplicationVolumeOptions) => Promise
Report application volume to AdMob SDK
| Param | Type |
| ------------- | ----------------------------------------------------------------------------- |
| options | ApplicationVolumeOptions |
Since: 4.1.1
--------------------
`typescript`
showBanner(options: BannerAdOptions) => Promise
Show a banner Ad
| Param | Type | Description |
| ------------- | ----------------------------------------------------------- | ---------------------------------- |
| options | BannerAdOptions | AdOptions |
Since: 1.1.2
--------------------
`typescript`
hideBanner() => Promise
Hide the banner, remove it from screen, but can show it later
Since: 1.1.2
--------------------
`typescript`
resumeBanner() => Promise
Resume the banner, show it after hide
Since: 1.1.2
--------------------
`typescript`
removeBanner() => Promise
Destroy the banner, remove it from screen.
Since: 1.1.2
--------------------
`typescript`
addListener(eventName: BannerAdPluginEvents.SizeChanged, listenerFunc: (info: AdMobBannerSize) => void) => Promise
| Param | Type | Description |
| ------------------ | --------------------------------------------------------------------------------- | ------------------- |
| eventName | BannerAdPluginEvents.SizeChanged | bannerAdSizeChanged |
| listenerFunc | (info: AdMobBannerSize) => void | |
Returns: Promise<PluginListenerHandle>
Since: 3.0.0
--------------------
`typescript`
addListener(eventName: BannerAdPluginEvents.Loaded, listenerFunc: () => void) => Promise
Notice: request loaded Banner ad
| Param | Type | Description |
| ------------------ | ---------------------------------------------------------------------------- | -------------- |
| eventName | BannerAdPluginEvents.Loaded | bannerAdLoaded |
| listenerFunc | () => void | |
Returns: Promise<PluginListenerHandle>
Since: 3.0.0
--------------------
`typescript`
addListener(eventName: BannerAdPluginEvents.FailedToLoad, listenerFunc: (info: AdMobError) => void) => Promise
Notice: request failed Banner ad
| Param | Type | Description |
| ------------------ | ---------------------------------------------------------------------------------- | -------------------- |
| eventName | BannerAdPluginEvents.FailedToLoad | bannerAdFailedToLoad |
| listenerFunc | (info: AdMobError) => void | |
Returns: Promise<PluginListenerHandle>
Since: 3.0.0
--------------------
`typescript`
addListener(eventName: BannerAdPluginEvents.Opened, listenerFunc: () => void) => Promise
Notice: full-screen banner view will be presented in response to the user clicking on an ad.
| Param | Type | Description |
| ------------------ | ---------------------------------------------------------------------------- | -------------- |
| eventName | BannerAdPluginEvents.Opened | bannerAdOpened |
| listenerFunc | () => void | |
Returns: Promise<PluginListenerHandle>
Since: 3.0.0
--------------------
`typescript`
addListener(eventName: BannerAdPluginEvents.Closed, listenerFunc: () => void) => Promise
Notice: The full-screen banner view will been dismissed.
| Param | Type | Description |
| ------------------ | ---------------------------------------------------------------------------- | -------------- |
| eventName | BannerAdPluginEvents.Closed | bannerAdClosed |
| listenerFunc | () => void | |
Returns: Promise<PluginListenerHandle>
Since: 3.0.0
--------------------
`typescript`
addListener(eventName: BannerAdPluginEvents.AdImpression, listenerFunc: () => void) => Promise
Unimplemented
| Param | Type | Description |
| ------------------ | ---------------------------------------------------------------------------------- | ------------ |
| eventName | BannerAdPluginEvents.AdImpression | AdImpression |
| listenerFunc | () => void | |
Returns: Promise<PluginListenerHandle>
Since: 3.0.0
--------------------
`typescript`
requestConsentInfo(options?: AdmobConsentRequestOptions | undefined) => Promise
Request user consent information
| Param | Type | Description |
| ------------- | --------------------------------------------------------------------------------- | --------------------- |
| options | AdmobConsentRequestOptions | ConsentRequestOptions |
Returns: Promise<AdmobConsentInfo>
Since: 5.0.0
--------------------
`typescript`
showPrivacyOptionsForm() => Promise
Shows a google privacy options form (rendered from your GDPR message config).
Since: 7.0.3
--------------------
`typescript`
showConsentForm() => Promise
Shows a google user consent form (rendered from your GDPR message config).
Returns: Promise<AdmobConsentInfo>
Since: 5.0.0
--------------------
`typescript`
resetConsentInfo() => Promise
Resets the UMP SDK state. Call requestConsentInfo function again to allow user modify their consent
Since: 5.0.0
--------------------
`typescript`
prepareInterstitial(options: AdOptions) => Promise
Prepare interstitial banner
| Param | Type | Description |
| ------------- | ----------------------------------------------- | ---------------------------------- |
| options | AdOptions | AdOptions |
Returns: Promise<AdLoadInfo>
Since: 1.1.2
--------------------
`typescript`
showInterstitial() => Promise
Show interstitial ad when it’s ready
Since: 1.1.2
--------------------
`typescript`
addListener(eventName: InterstitialAdPluginEvents.FailedToLoad, listenerFunc: (error: AdMobError) => void) => Promise
| Param | Type |
| ------------------ | ---------------------------------------------------------------------------------------------- |
| eventName | InterstitialAdPluginEvents.FailedToLoad |
| listenerFunc | (error: AdMobError) => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
addListener(eventName: InterstitialAdPluginEvents.Loaded, listenerFunc: (info: AdLoadInfo) => void) => Promise
| Param | Type |
| ------------------ | ---------------------------------------------------------------------------------------- |
| eventName | InterstitialAdPluginEvents.Loaded |
| listenerFunc | (info: AdLoadInfo) => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
addListener(eventName: InterstitialAdPluginEvents.Dismissed, listenerFunc: () => void) => Promise
| Param | Type |
| ------------------ | ------------------------------------------------------------------------------------------- |
| eventName | InterstitialAdPluginEvents.Dismissed |
| listenerFunc | () => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
addListener(eventName: InterstitialAdPluginEvents.FailedToShow, listenerFunc: (error: AdMobError) => void) => Promise
| Param | Type |
| ------------------ | ---------------------------------------------------------------------------------------------- |
| eventName | InterstitialAdPluginEvents.FailedToShow |
| listenerFunc | (error: AdMobError) => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
addListener(eventName: InterstitialAdPluginEvents.Showed, listenerFunc: () => void) => Promise
| Param | Type |
| ------------------ | ---------------------------------------------------------------------------------------- |
| eventName | InterstitialAdPluginEvents.Showed |
| listenerFunc | () => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
prepareRewardVideoAd(options: RewardAdOptions) => Promise
Prepare a reward video ad
| Param | Type | Description |
| ------------- | ----------------------------------------------------------- | ---------------------------------------------- |
| options | RewardAdOptions | RewardAdOptions |
Returns: Promise<AdLoadInfo>
Since: 1.1.2
--------------------
`typescript`
showRewardVideoAd() => Promise
Show a reward video ad
Returns: Promise<AdMobRewardItem>
Since: 1.1.2
--------------------
`typescript`
addListener(eventName: RewardAdPluginEvents.FailedToLoad, listenerFunc: (error: AdMobError) => void) => Promise
| Param | Type |
| ------------------ | ---------------------------------------------------------------------------------- |
| eventName | RewardAdPluginEvents.FailedToLoad |
| listenerFunc | (error: AdMobError) => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
addListener(eventName: RewardAdPluginEvents.Loaded, listenerFunc: (info: AdLoadInfo) => void) => Promise
| Param | Type |
| ------------------ | ---------------------------------------------------------------------------- |
| eventName | RewardAdPluginEvents.Loaded |
| listenerFunc | (info: AdLoadInfo) => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
addListener(eventName: RewardAdPluginEvents.Rewarded, listenerFunc: (reward: AdMobRewardItem) => void) => Promise
| Param | Type |
| ------------------ | -------------------------------------------------------------------------------- |
| eventName | RewardAdPluginEvents.Rewarded |
| listenerFunc | (reward: AdMobRewardItem) => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
addListener(eventName: RewardAdPluginEvents.Dismissed, listenerFunc: () => void) => Promise
| Param | Type |
| ------------------ | ------------------------------------------------------------------------------- |
| eventName | RewardAdPluginEvents.Dismissed |
| listenerFunc | () => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
addListener(eventName: RewardAdPluginEvents.FailedToShow, listenerFunc: (error: AdMobError) => void) => Promise
| Param | Type |
| ------------------ | ---------------------------------------------------------------------------------- |
| eventName | RewardAdPluginEvents.FailedToShow |
| listenerFunc | (error: AdMobError) => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
addListener(eventName: RewardAdPluginEvents.Showed, listenerFunc: () => void) => Promise
| Param | Type |
| ------------------ | ---------------------------------------------------------------------------- |
| eventName | RewardAdPluginEvents.Showed |
| listenerFunc | () => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
prepareRewardInterstitialAd(options: RewardInterstitialAdOptions) => Promise
Prepare a reward video ad
| Param | Type | Description |
| ------------- | ----------------------------------------------------------------------------------- | ---------------------------------------------- |
| options | RewardInterstitialAdOptions | RewardAdOptions |
Returns: Promise<AdLoadInfo>
Since: 1.1.2
--------------------
`typescript`
showRewardInterstitialAd() => Promise
Show a reward video ad
Returns: Promise<AdMobRewardInterstitialItem>
Since: 1.1.2
--------------------
`typescript`
addListener(eventName: RewardInterstitialAdPluginEvents.FailedToLoad, listenerFunc: (error: AdMobError) => void) => Promise
| Param | Type |
| ------------------ | ---------------------------------------------------------------------------------------------------------- |
| eventName | RewardInterstitialAdPluginEvents.FailedToLoad |
| listenerFunc | (error: AdMobError) => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
addListener(eventName: RewardInterstitialAdPluginEvents.Loaded, listenerFunc: (info: AdLoadInfo) => void) => Promise
| Param | Type |
| ------------------ | ---------------------------------------------------------------------------------------------------- |
| eventName | RewardInterstitialAdPluginEvents.Loaded |
| listenerFunc | (info: AdLoadInfo) => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
addListener(eventName: RewardInterstitialAdPluginEvents.Rewarded, listenerFunc: (reward: AdMobRewardInterstitialItem) => void) => Promise
| Param | Type |
| ------------------ | -------------------------------------------------------------------------------------------------------- |
| eventName | RewardInterstitialAdPluginEvents.Rewarded |
| listenerFunc | (reward: AdMobRewardInterstitialItem) => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
addListener(eventName: RewardInterstitialAdPluginEvents.Dismissed, listenerFunc: () => void) => Promise
| Param | Type |
| ------------------ | ------------------------------------------------------------------------------------------------------- |
| eventName | RewardInterstitialAdPluginEvents.Dismissed |
| listenerFunc | () => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
addListener(eventName: RewardInterstitialAdPluginEvents.FailedToShow, listenerFunc: (error: AdMobError) => void) => Promise
| Param | Type |
| ------------------ | ---------------------------------------------------------------------------------------------------------- |
| eventName | RewardInterstitialAdPluginEvents.FailedToShow |
| listenerFunc | (error: AdMobError) => void |
Returns: Promise<PluginListenerHandle>
--------------------
`typescript`
addListener(eventName: RewardInterstitialAdPluginEvents.Showed, listenerFunc: () => void) => Promise
| Param | Type |
| ------------------ | ---------------------------------------------------------------------------------------------------- |
| eventName | RewardInterstitialAdPluginEvents.Showed |
| listenerFunc | () => void |
Returns: Promise<PluginListenerHandle>
--------------------
#### AdMobInitializationOptions
| Prop | Type | Description | Default | Since |
| ---------------------------------- | ----------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | ----- |
| testingDevices | string[] | An Array of devices IDs that will be marked as tested devices if {@link AdMobInitializationOptions.initializeForTesting} is true (Real Ads will be served to Testing devices, but they will not count as 'real'). | | 1.2.0 |
| initializeForTesting | boolean | If set to true, the devices on {@link AdMobInitializationOptions.testingDevices} will be registered to receive test production ads. | false | 1.2.0 |
| tagForChildDirectedTreatment | boolean | For purposes of the Children's Online Privacy Protection Act (COPPA), there is a setting called tagForChildDirectedTreatment. | | 3.1.0 |
| tagForUnderAgeOfConsent | boolean | When using this feature, a Tag For Users under the Age of Consent in Europe (TFUA) parameter will be included in all future ad requests. | | 3.1.0 |
| maxAdContentRating | MaxAdContentRating | As an app developer, you can indicate whether you want Google to treat your content as child-directed when you make an ad request. | | 3.1.0 |
#### TrackingAuthorizationStatusInterface
| Prop | Type |
| ------------ | ------------------------------------------------------------------------ |
| status | 'authorized' \| 'denied' \| 'notDetermined' \| 'restricted' |
#### ApplicationMutedOptions
| Prop | Type | Description | Since |
| ----------- | -------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----- |
| muted | boolean | To inform the SDK that the app volume has been muted. Note: Video ads that are ineligible to be shown with muted audio are not returned for ad requests made, when the app volume is reported as muted or set to a value of 0. This may restrict a subset of the broader video ads pool from serving. | 4.1.1 |
#### ApplicationVolumeOptions
| Prop | Type | Description | Since |
| ------------ | ---------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----- |
| volume | 0 \| 1 \| 0.1 \| 0.2 \| 0.3 \| 0.4 \| 0.5 \| 0.6 \| 0.7 \| 0.8 \| 0.9 | If your app has its own volume controls (such as custom music or sound effect volumes), disclosing app volume to the Google Mobile Ads SDK allows video ads to respect app volume settings. enable set 0.0 - 1.0, any float allowed. | 4.1.1 |
#### BannerAdOptions
This interface extends AdOptions
| Prop | Type | Description | Default | Since |
| ------------------- | ------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------- | ----- |
| adSize | BannerAdSize | Banner Ad Size, defaults to ADAPTIVE_BANNER. IT can be: ADAPTIVE_BANNER, SMART_BANNER, BANNER, MEDIUM_RECTANGLE, FULL_BANNER, LEADERBOARD | ADAPTIVE_BANNER | 3.0.0 |
| position | BannerAdPosition | Set Banner Ad position. TOP_CENTER or CENTER or BOTTOM_CENTER | TOP_CENTER | 1.1.2 |
| adId | string | The ad unit ID that you want to request | | 1.1.2 |
| isTesting | boolean | You can use test mode of ad. | false | 1.1.2 |
| margin | number | Margin Banner. Default is 0px; If position is BOTTOM_CENTER, margin is be margin-bottom. If position is TOP_CENTER, margin is be margin-top. | 0 | 1.1.2 |
| npa | boolean | The default behavior of the Google Mobile Ads SDK is to serve personalized ads. Set this to true to request Non-Personalized Ads | false | 1.2.0 |
| immersiveMode | boolean | Sets a flag that controls if this interstitial or reward object will be displayed in immersive mode. Call this method before show. During show, if this flag is on and immersive mode is supported, SYSTEM_UI_FLAG_IMMERSIVE_STICKY &SYSTEM_UI_FLAG_HIDE_NAVIGATION will be turned on for interstitial or reward ad. | | 7.0.3 |
#### PluginListenerHandle
| Prop | Type |
| ------------ | ----------------------------------------- |
| remove | () => Promise<void> |
#### AdMobBannerSize
When notice listener of OnAdLoaded, you can get banner size.
| Prop | Type |
| ------------ | ------------------- |
| width | number |
| height | number |
#### AdMobError
For more information
https://developers.google.com/android/reference/com/google/android/gms/ads/AdError
| Prop | Type | Description |
| ------------- | ------------------- | -------------------------------------- |
| code | number | Gets the error's code. |
| message | string | Gets the message describing the error. |
#### AdmobConsentInfo
| Prop | Type | Description | Since |
| ------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------- | ----- |
| status | AdmobConsentStatus | The consent status of the user. | 5.0.0 |
| isConsentFormAvailable | boolean | If true a consent form is available and vice versa. | 5.0.0 |canRequestAds
| | trueboolean | If an ad can be shown. | 7.0.3 |privacyOptionsRequirementStatus
| | PrivacyOptionsRequirementStatus | Privacy options requirement status of the user. | 7.0.3 |
#### AdmobConsentRequestOptions
| Prop | Type | Description | Default | Since |
| ----------------------------- | --------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------ | ------------------ | ----- |
| debugGeography | AdmobConsentDebugGeography | Sets the debug geography to test the consent locally. | | 5.0.0 |
| testDeviceIdentifiers | string[] | An array of test device IDs to allow. Note: On iOS, the ID may renew if you uninstall and reinstall the app. | | 5.0.0 |
| tagForUnderAgeOfConsent | boolean | Set to true to provide the option for the user to accept being shown personalized ads. | false | 5.0.0 |
#### AdLoadInfo
| Prop | Type |
| -------------- | ------------------- |
| adUnitId | string |
#### AdOptions
| Prop | Type | Description | Default | Since |
| ------------------- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | ----- |
| adId | string | The ad unit ID that you want to request | | 1.1.2 |
| isTesting | boolean | You can use test mode of ad. | false | 1.1.2 |
| margin | number | Margin Banner. Default is 0px; If position is BOTTOM_CENTER, margin is be margin-bottom. If position is TOP_CENTER, margin is be margin-top. | 0 | 1.1.2 |
| npa | boolean | The default behavior of the Google Mobile Ads SDK is to serve personalized ads. Set this to true to request Non-Personalized Ads | false | 1.2.0 |
| immersiveMode | boolean | Sets a flag that controls if this interstitial or reward object will be displayed in immersive mode. Call this method before show. During show, if this flag is on and immersive mode is supported, SYSTEM_UI_FLAG_IMMERSIVE_STICKY &SYSTEM_UI_FLAG_HIDE_NAVIGATION will be turned on for interstitial or reward ad. | | 7.0.3 |
#### RewardAdOptions
| Prop | Type | Description | Default | Since |
| ------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | ----- |
| ssv | AtLeastOne<{ / An optional UserId to pass to your SSV callback function. / userId: string; / An optional custom set of data to pass to your SSV callback function. / customData: string; }> | If you have enabled SSV in your AdMob Application. You can provide customData or a userId be passed to your callback to do further processing on. Important You HAVE to define one of them. | | |
| adId | string | The ad unit ID that you want to request | | 1.1.2 |
| isTesting | boolean | You can use test mode of ad. | false | 1.1.2 |
| margin | number | Margin Banner. Default is 0px; If position is BOTTOM_CENTER, margin is be margin-bottom. If position is TOP_CENTER, margin is be margin-top. | 0 | 1.1.2 |
| npa | boolean | The default behavior of the Google Mobile Ads SDK is to serve personalized ads. Set this to true to request Non-Personalized Ads | false | 1.2.0 |
| immersiveMode | boolean | Sets a flag that controls if this interstitial or reward object will be displayed in immersive mode. Call this method before show. During show, if this flag is on and immersive mode is supported, SYSTEM_UI_FLAG_IMMERSIVE_STICKY &SYSTEM_UI_FLAG_HIDE_NAVIGATION will be turned on for interstitial or reward ad. | | 7.0.3 |
#### AdMobRewardItem
For more information
https://developers.google.com/admob/android/rewarded-video-adapters?hl=en
| Prop | Type | Description |
| ------------ | ------------------- | ------------------------ |
| type | string | Rewarded type user got |
| amount | number | Rewarded amount user got |
#### RewardInterstitialAdOptions
| Prop | Type | Description | Default | Since |
| ------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | ----- |
| ssv | AtLeastOne<{ / An optional UserId to pass to your SSV callback function. / userId: string; / An optional custom set of data to pass to your SSV callback function. / customData: string; }> | If you have enabled SSV in your AdMob Application. You can provide customData or a userId be passed to your callback to do further processing on. Important You HAVE to define one of them. | | |
| adId | string | The ad unit ID that you want to request | | 1.1.2 |
| isTesting | boolean | You can use test mode of ad. | false | 1.1.2 |
| margin | number | Margin Banner. Default is 0px; If position is BOTTOM_CENTER, margin is be margin-bottom. If position is TOP_CENTER, margin is be margin-top. | 0 | 1.1.2 |
| npa | boolean | The default behavior of the Google Mobile Ads SDK is to serve personalized ads. Set this to true to request Non-Personalized Ads | false | 1.2.0 |
| immersiveMode` | boolean | Sets a flag that controls if this interstitial or reward object will be displayed in immersive mode. Call this method before s