Mediation Networks for Android
OpenMediation lets you serve ads to your apps from multiple sources and helps maximize your fill rate and increase your monetization by sending ad requests to multiple networks to ensure you find the best available network to serve ads. The OpenMediation platform supports Banner, Native, Interstitial and Rewarded Video Ads from 10 leading ad networks, equipped with smart loading, multi-instance placement optimization and hybrid waterfall technology.
Before You Start
To work with OpenMediation platform, you should first correctly integrate OpenMediation's ad format into your application with OpenMediation SDK:
Important! The ADAPTERS for ad networks are modularized, which means that you need to include Not Only the SDK of mediation networks you choose to work with But Also the adapters for those ad networks. An adapter contains the code needed to operate the ad network.
For example, if you want to integrate AdMob through OpenMediation, you need to add the AdMob SDK as well as the Adapter for AdMob together to the libs of your project.
Integrate Mediation Networks
OpenMediation supports over 10+ third-party ad networks. Integrating mediation requires changes in three places:
- Third-party ad network UI - Sign up for the third-party ad network and create a placement in their front end.
- OpenMediation UI - Update your ad unit's mediation settings to include the ad network. It is also recommended that you set up ad network optimization for ad networks that support it.
- App code - Update your app to include the third-party ad network's SDK, and an adapter library that communicates between OpenMediation and the third-party ad network to request and serve ads.
Make sure to follow the Ad Network Integration Guides to access premium ad inventory through our Mediation platform.
You can easily integrate the ad networks you're interested in integrating with OpenMediation Mediation by selecting the networks below and copying the Gradle Script to the code of your app module.If you'd still like to use Manual Download to integrate our adapters, you can find all the necessary links and information to do so in the next section Manual Download for Mediation Networks.
The OpenMediation SaaS platform provides comprehensive overseas monetization AdNetwork platform coverage. You only need two steps to complete the integration of the required platform SDK and OpenMediation SDK. The integration code of the following example includes all supported overseas platforms. Please select the appropriate code fragment according to the platform to be integrated.
Step 1, Add the following to your project-level gradle file inside repositories section.
allprojects {
repositories {
mavenCentral()
google()
jcenter()
maven {
url "https://adcolony.bintray.com/AdColony"
}
maven {
url "https://tapjoy.bintray.com/maven"
}
maven {
url "https://dl.adtiming.com/android-sdk"
}
maven {
url "https://dl.bintray.com/ironsource-mobile/android-sdk"
}
maven {
url "https://chartboostmobile.bintray.com/Chartboost"
}
maven {
url "https://dl.bintray.com/mintegral-official/mintegral_ad_sdk_android_for_oversea"
}
}
}
Step 2, Add the following to your application-level gradle file inside dependencies section.
dependencies {
implementation 'com.openmediation:om-android-sdk:2.0.2'
// for CrossPromotion
implementation 'com.openmediation.adapters:crosspromotion:1.0.1'
implementation 'com.openmediation:crosspromotion-sdk:1.0.3'
// for AdTiming
implementation 'com.openmediation.adapters:adtiming:2.0.1'
implementation 'com.adtiming:adnetwork:6.8.0@aar'
// for AdMob
implementation 'com.openmediation.adapters:admob:2.0.1'
implementation 'com.google.android.gms:play-services-ads:19.5.0'
// for Facebook
implementation 'com.openmediation.adapters:facebook:2.0.0'
implementation 'com.facebook.android:audience-network-sdk:6.2.0'
// for Vungle
implementation 'com.openmediation.adapters:vungle:2.0.0'
implementation 'com.vungle:publisher-sdk-android:6.8.1'
// for AdColony
implementation 'com.openmediation.adapters:adcolony:2.0.0'
implementation 'com.adcolony:sdk:4.3.0'
// for AppLovin
implementation 'com.openmediation.adapters:applovin:2.0.0'
implementation 'com.applovin:applovin-sdk:9.14.10'
// for MoPub
implementation 'com.openmediation.adapters:mopub:2.0.0'
implementation ('com.mopub:mopub-sdk:5.15.0@aar') { transitive = true }
// for Tapjoy
implementation 'com.openmediation.adapters:tapjoy:2.0.0'
implementation 'com.tapjoy:tapjoy-android-sdk:12.7.1@aar'
// for Chartboost
implementation 'com.openmediation.adapters:chartboost:2.0.0'
implementation 'com.chartboost:chartboost-sdk:8.2.0'
implementation 'com.google.android.gms:play-services-base:17.5.0'
implementation 'com.google.android.gms:play-services-ads-identifier:17.0.0'
// for UnityAds
implementation 'com.openmediation.adapters:unity:2.0.1'
implementation 'com.unity3d.ads:unity-ads:3.5.1'
implementation 'com.google.android.gms:play-services-ads-identifier:17.0.0'
// for Mingtegral
implementation 'com.openmediation.adapters:mintegral:2.0.0'
implementation 'com.mintegral.msdk.oversea:videojs:15.3.11'
implementation 'com.mintegral.msdk.oversea:mtgjscommon:15.3.11'
implementation 'com.mintegral.msdk.oversea:playercommon:15.3.11'
implementation 'com.mintegral.msdk.oversea:reward:15.3.11'
implementation 'com.mintegral.msdk.oversea:videocommon:15.3.11'
implementation 'com.mintegral.msdk.oversea:interstitialvideo:15.3.11'
implementation 'com.mintegral.msdk.oversea:common:15.3.11'
implementation 'com.mintegral.msdk.oversea:mtgbanner:15.3.11'
// for using bidding
implementation 'com.mintegral.msdk.oversea:mtgbid:15.3.11'
// for Pangle
implementation 'com.openmediation.adapters:tiktok:2.0.0'
implementation 'com.bytedance.sdk:pangle-sdk:3.1.7.4'
implementation 'com.google.android.gms:play-services-ads-identifier:17.0.0'
// for ironSource
implementation 'com.openmediation.adapters:ironsource:2.0.0'
implementation 'com.ironsource.sdk:mediationsdk:7.0.3.1'
implementation 'com.google.android.gms:play-services-ads-identifier:17.0.0'
implementation 'com.google.android.gms:play-services-basement:17.5.0'
// for Helium
implementation 'com.openmediation.adapters:helium:2.0.0'
implementation 'com.chartboost:helium:2.2.0'
implementation 'org.greenrobot:eventbus:3.2.0'
implementation 'com.google.android.gms:play-services-base:17.5.0'
implementation 'com.google.android.gms:play-services-ads-identifier:17.0.0'
}
Manual Download for Mediation Networks
Below are the supported ads formats and compatible versions of the OpenMediation and each mediation platform's SDKs. You can download and integrate according to your needs.
Platforms | Supported SDK Version | Banner | Interstitial | Native | Reward Video | Splash | SDK Download | Adapter Download |
---|---|---|---|---|---|---|---|---|
AdTiming | 6.8.0 | ✔️ | ✔️ | ✔️ | ✔️ | Maven Configuration | Download | |
AdMob | 19.5.0 | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | Maven Configuration | Download |
6.2.0 | ✔️ | ✔️ | ✔️ | ✔️ | Maven Configuration | Download | ||
MoPub | 5.15.0 | ✔️ | ✔️ | ✔️ | ✔️ | Maven Configuration | Download | |
UnityAds | 3.5.1 | ✔️ | ✔️ | ✔️ | Maven Configuration | Download | ||
AppLovin | 9.14.10 | ✔️ | ✔️ | ✔️ | Maven Configuration | Download | ||
AdColony | 4.3.0 | ✔️ | Maven Configuration | Download | ||||
Vungle | 6.8.1 | ✔️ | ✔️ | ✔️ | Maven Configuration | Download | ||
Tapjoy | 12.7.1 | ✔️ | ✔️ | Maven Configuration | Download | |||
Chartboost | 8.2.0 | ✔️ | ✔️ | Maven Configuration | Download | |||
Mintegral | 15.3.11 | ✔️ | ✔️ | ✔️ | Maven Configuration | Download | ||
Pangle | 3.1.7.4 | ✔️ | ✔️ | Maven Configuration | Download | |||
ironSource | 7.0.3.1 | ✔️ | ✔️ | ✔️ | Maven Configuration | Download | ||
Helium | 2.2.0 | ✔️ | ✔️ | Maven Configuration | Download | |||
CrossPromotion | 1.0.3 | ✔️ | ✔️ | ✔️ | ✔️ | Maven Configuration | Download |
Comments
Article is closed for comments.