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 🙏

© 2026 – Pkg Stats / Ryan Hefner

tauri-plugin-admob-android-api

v0.1.12

Published

AdMob integration for Tauri Android applications.

Readme

tauri-plugin-admob-android

A simple and efficient Tauri plugin to integrate Google AdMob into your Android applications. This plugin allows you to display Banner and Interstitial ads with ease.

Features

  • Easy Initialization: Set up AdMob SDK with a single function call.
  • Consent Management: Built-in support for requesting user consent (GDPR/UMP).
  • Multiple Ad Formats: Support for Banners (Top/Bottom) and Interstitial ads.
  • Tauri 2.0 Ready: Designed specifically for the latest Tauri mobile ecosystem.

Installation

Using Tauri CLI (Recommended)

The easiest way to install this plugin is using the Tauri CLI, which automatically adds both Rust and JavaScript dependencies to your project:

# Using npm
npm run tauri add admob-android

# Using pnpm
pnpm tauri add admob-android

# Using yarn
yarn tauri add admob-android

# Using bun
bun tauri add admob-android

This will:

  • Add the tauri-plugin-admob-android crate to your Cargo.toml.
  • Install the tauri-plugin-admob-android-api npm package.
  • Set up the necessary configurations and permissions.

Manual Installation

If you prefer to manually install the plugin, follow these steps:

1. Rust Dependencies

Add the plugin to your src-tauri/Cargo.toml file:

[dependencies]
tauri-plugin-admob-android = "0.1.8"

2. JavaScript/TypeScript API

Install the frontend package:

yarn add tauri-plugin-admob-android-api
# or
npm install tauri-plugin-admob-android-api

Setup

Android Build Configuration

Update your Kotlin and Gradle versions in src-tauri/gen/android/build.gradle.kts to ensure compatibility:

dependencies {
    classpath("com.android.tools.build:gradle:8.2.1")
    classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.20")
}

Android Manifest

Add your AdMob App ID and required permissions to src-tauri/gen/android/app/src/main/AndroidManifest.xml. Replace YOUR_ADMOB_APP_ID with your actual ID from the AdMob dashboard. Or you can test it with Test ID ca-app-pub-3940256099942544~3347511713

<manifest>
    <application>
       <meta-data
            android:name="com.google.android.gms.ads.APPLICATION_ID"
            android:value="YOUR_ADMOB_APP_ID"/>
    </application>

    <uses-permission android:name="com.google.android.gms.permission.AD_ID"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />
</manifest>

Usage

import {
  initialize,
  requestConsent,
  getConsentStatus,
  canRequestAds,
  loadBanner,
  loadInterstitial
} from 'tauri-plugin-admob-android-api';

 1. Initialize AdMob SDK
await initialize();

 2. Check and Request Consent (GDPR/UMP)
const status = await getConsentStatus();
console.log(Current Consent Status: ${status});

if (status === 'REQUIRED') {
  await requestConsent();
}

 3. Check if ads can be requested
const canShow = await canRequestAds();

if (canShow) {
   4. Show Ads


   Display a Banner Ad at the bottom
  await loadBanner({
    position: 'bottom',
    adUnitId: 'ca-app-pub-3940256099942544/6300978111'
  });

   Display an Interstitial Ad (Full-screen)
  await loadInterstitial({
    adUnitId: 'ca-app-pub-3940256099942544/1033173712'
  });
}

Thanks

Special thanks to the tauri-plugin-cache project.
This plugin was developed by referencing its README.md, package.json, and Cargo.toml structure, which served as a valuable guide for implementing the Tauri 2.0 plugin architecture.

License

MIT