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
Create mediation
In the Admob backend, click Mediation -> Mediation groups -> Create Mediation Group

Add BeesAds to the mediation group
Click ADD CUSTOM EVENT in Waterfall

Fill in BeesAds in Label

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
Please complete the SDK quick access first
In the application-level
build.gradle
file (usuallyapp/build.gradle
), complete our Admob adapter access
dependencies {
// bees admob adapter
implementation 'io.github.beesads:adapter-admob:1.1.1'
}
Configure the
App Id
of the BeesAds platform inapp/src/main.AndroidManifest.xml
.
<manifest>
<application>
<meta-data
android:name="com.bees.ads.sdk.APP_ID"
android:value="application id" />
</application>
</manifest>
Last updated