Supported Networks
BlueStack's mediation feature enables you to deliver advertisements to your app from various sources, including BlueStack itself and third-party ad networks. This section provides guidance on integrating mediation partner SDKs through BlueStack's third-party SDK adapters.
in-App Bidding
build.gradle
repositories {
maven { url 'https://packagecloud.io/smartadserver/android/maven2' }
}
dependencies {
implementation 'com.azerion:bluestack-mediation-bidding:+'
}
Criteo - in-App Bidding
build.gradle
dependencies {
implementation 'com.azerion:bluestack-mediation-criteo:+'
}
GAM / AdMob
For Google you need to add your Google App ID to your app's AndroidManifest.xml file
AndroidManifest.xml
<manifest>
<application>
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="ca-app-pub-xxxxxxxxxxxxxxxx~yyyyyyyyyy"/>
</application>
</manifest>
build.gradle
dependencies {
implementation 'com.azerion:bluestack-mediation-gma:+'
}
Note: In-App-Bidding has a default dependency with Amazon and Smart Display SDK. So adding In-App-Bidding will automatically include these two SDKs. For Criteo you will have to add the BlueStack Criteo mediation adapter dependency seperately in your project.
Equativ
build.gradle
repositories {
google()
mavenCentral()
maven { url 'https://packagecloud.io/smartadserver/android/maven2' }
}
dependencies {
implementation 'com.azerion:bluestack-mediation-smartadserver:+'
}
Suported Ad Networks
Ad Network | InApp Bidding | SDK Version | Adapter Version | Supported Ad Formats |
---|---|---|---|---|
No | 23.4.0 | 4.4.0.0 | Banner / MREC, Interstitial, Rewarded Ads, Native Ads | |
Amazon | Yes | 6.18.0 | (included in BlueStack Bidding) | Banner / MREC, Interstitial, Rewarded Ads |
Equativ | Yes | 7.24.0 | 4.4.1.0 | Banner / MREC, Interstitial, Rewarded Ads, Native Ads |
Criteo | Yes | 7.1.0 | 4.6.4 | Banner / MREC, Interstitial, Rewarded Ads, Native Ads |
BlueStack Bidding | Yes | N/A | 4.4.1.0 | Banner / MREC, Interstitial, Rewarded Ads, Native Ads |
Notes
- Ensure all dependencies are included as outlined in each network’s integration guide.
- Ad formats may require additional configurations or testing to confirm functionality.