Admob aggregation

Add to Admob mediation platform

This article explains how to add the Adapter provided by BeesAds to the Admob mediation platform so that ads from BeesAds can be requested through Admob mediation.

Preparation before access

  1. Create mediation

In the Admob backend, click Mediation -> Mediation groups -> Create Mediation Group

  1. Add BeesAds to the mediation group

  • Click ADD CUSTOM EVENT in Waterfall

  • Fill in BeesAds in Label

  1. Mapping ad units

Parameter Description:

  • Class Name:com.beesads.mediation.adapters.admob.AdmobAdapter

  • Parameter:Fill in the advertising id of the BeesAds platform here

SDK Access

  1. Please complete the SDK quick access first

  2. In the application-level build.gradle file (usually app/build.gradle), complete our Admob adapter access

dependencies {
    // bees admob adapter
    implementation 'io.github.beesads:adapter-admob:1.1.1'
}
  1. Configure the App Id of the BeesAds platform in app/src/main.AndroidManifest.xml.

<manifest>
  <application>
    <meta-data
        android:name="com.bees.ads.sdk.APP_ID"
        android:value="application id" />
  </application>
</manifest>

Last updated