Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/admob-plus/admob-plus/llms.txt

Use this file to discover all available pages before exploring further.

AdMob Plus provides a comprehensive Cordova plugin for integrating Google AdMob into your hybrid mobile applications.

Package Information

Package Name: admob-plus-cordova Version: 2.0.0-alpha.19 Platforms: Android, iOS, Browser

Key Features

TypeScript Support

Full TypeScript definitions included for type-safe development

All Ad Formats

Support for Banner, Interstitial, Rewarded, Native, and App Open ads

Event System

Comprehensive event listeners for ad lifecycle management

No Ad-Sharing

Keep 100% of your ad revenue - no hidden fees or revenue sharing

What You’ll Learn

This section covers everything you need to integrate AdMob Plus into your Cordova application:
  • Installation - Add the plugin to your Cordova project
  • Usage - Learn how to display ads in your app

Plugin Architecture

The plugin bridges JavaScript and native code:
import { AdMob } from 'admob-plus-cordova';

// Initialize AdMob
await AdMob.start();

// Create and show an ad
const banner = new AdMob.BannerAd({
  adUnitId: 'ca-app-pub-xxx/xxx',
});

await banner.show();

Cordova Compatibility

  • Cordova: 12.0.0+
  • Cordova Android: 10.0.0+
  • Cordova iOS: 6.0.0+

Repository

The plugin is open source and available on GitHub:

View on GitHub

View source code, report issues, and contribute to the project

Next Steps

Installation

Install the plugin in your Cordova project

Usage Guide

Learn how to implement ads in your app