Adapter Bidding/Waterfall
This guide shows you how to integrate the official BidMachine adapter for Google AdMob on Android.
Waterfall Integration BETA
Waterfall integration is currently in beta. Please contact your BidMachine account manager for setup assistance and access.
Import the BidMachine SDK and Adapter
Version Compatibility
Failure to integrate the compatible BidMachine SDK and Google Mobile Ads SDK versions might lead to build issues.
Add BidMachine Repository
Add the BidMachine repository to your project-level build.gradle file:
build.gradle
repositories {
maven {
url "https://artifactory.bidmachine.io/bidmachine"
}
}
Add Dependencies
Add the following dependencies to your app-level build.gradle file:
- Kotlin
- Java
build.gradle.kts
dependencies {
implementation("com.google.android.gms:play-services-ads:25.3.0")
implementation("com.google.ads.mediation:bidmachine:3.7.0.0")
}
build.gradle
dependencies {
implementation 'com.google.android.gms:play-services-ads:25.3.0'
implementation 'com.google.ads.mediation:bidmachine:3.7.0.0'
}
Additional Configuration
For complete console setup and integration instructions, see the AdMob Console Setup (Official) page.