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

claude-admob-unityads-cordova

v1.0.0

Published

Unity Ads mediation adapter for Google AdMob (community-admob-plus-cordova). Supports open bidding.

Readme

claude-admob-unityads-cordova

Unity Ads mediation adapter Cordova plugin for Google AdMob.
Designed to be used alongside community-admob-plus-cordova and the Claude AdMob Construct 3 plugin.


What this plugin does

This is a background/adapter-only Cordova plugin. It has no JavaScript API.
Its sole purpose is to inject the Unity Ads AdMob mediation adapter into your Android and iOS build, enabling Unity Ads to compete as a bidder in your AdMob mediation waterfall.

Android

Adds the following Gradle dependency:

implementation("com.google.ads.mediation:unity:4.17.0.0")

iOS

Adds the following CocoaPod:

pod 'GoogleMobileAdsMediationUnity', '~> 4.17.0.0'

Requirements

| Requirement | Version | |---|---| | cordova | >= 9.0.0 | | cordova-android | >= 9.0.0 | | cordova-ios | >= 6.0.0 | | community-admob-plus-cordova | >= 1.33.0 | | Unity Ads adapter | >= 4.16.0.1 (open bidding) |

⚠️ Open Bidding requires adapter 4.16.0.1 or higher.
This plugin defaults to 4.17.0.0 which is the latest version as of April 2025.


Installation (via Construct 3)

This plugin is meant to be used via the Claude AdMob Unity Ads Construct 3 add-on (.c3addon).
Simply add the add-on to your Construct 3 project alongside Claude AdMob, and this Cordova plugin will be automatically included in your APK/IPA build.


Manual Installation (Cordova CLI)

cordova plugin add claude-admob-unityads-cordova

With custom adapter version:

cordova plugin add claude-admob-unityads-cordova \
  --variable ANDROID_ADAPTER_VERSION=4.17.0.0 \
  --variable IOS_ADAPTER_VERSION=4.17.0.0

Unity Ads Setup (IMPORTANT — Read Before Using)

For open bidding to work, you must complete the following steps in the Unity Ads and AdMob dashboards:

Step 1 — Unity Ads Dashboard

  1. Go to Unity Ads Monetization Dashboard
  2. Create a new Project → select "I will use Mediation" → choose "Google AdMob" as mediation partner
  3. Under Placements, create a new Ad Unit and select Bidding as the setup type
  4. Note down your Game ID and Bidding Placement ID

⚠️ You cannot reuse a waterfall Placement ID for bidding. You must create a new Bidding Placement ID.

Step 2 — AdMob Dashboard

  1. Go to your AdMob ad unit → Mediation tab
  2. Under the Bidding section, click Add ad source → select Unity Ads
  3. Click "Sign a partnership agreement" to link your Unity Ads account
  4. Enter your Game ID and Bidding Placement ID from Step 1

Step 3 — Revenue Reporting

ℹ️ Bidding revenue from Unity Ads is paid by Google, NOT by Unity.
Revenue will appear in your AdMob/Google account, not in the Unity Monetization Dashboard.


Variables

| Variable | Default | Description | |---|---|---| | ANDROID_ADAPTER_VERSION | 4.17.0.0 | Unity Ads AdMob adapter version for Android | | IOS_ADAPTER_VERSION | 4.17.0.0 | Unity Ads AdMob adapter version for iOS |


Compatibility Table

| Adapter Version | Unity Ads SDK | Min AdMob SDK | |---|---|---| | 4.17.0.0 | 4.17.0 | 25.2.0 | | 4.16.6.0 | 4.16.6 | 24.9.0 | | 4.16.0.1 | 4.16.0 | 24.3.0 |


License

MIT