-
-
Notifications
You must be signed in to change notification settings - Fork 1
m.Mediation Amazon
This guide shows how to add mediation through AdMob to your IronSource integration.
- To access Amazon’s ad inventory through ironSource‘s mediation platform, you must create an account with Amazon. You can do so here.
Next, you must add the app in your Amazon account.
Serving Amazon’s ads through the ironSource mediation platform has never been this easy. Sign in to your Amazon account when setting up Amazon on the ironSource SDK Networks setup page and we’ll automatically retrieve all the necessary parameters to run Amazon’s Banners for you!
See the following guide for more information:
The com.distriqt.ironsource.Amazon
ANE includes the Amazon SDK and the IronSource Amazon mediation adapter. This is everything you need to get Amazon mediation working in your application.
To add the ANE download it from the repository and add it to your application:
Add the extension id to your application descriptor:
<extensions>
<extensionID>com.distriqt.Core</extensionID>
<extensionID>com.distriqt.IronSource</extensionID>
<extensionID>com.distriqt.ironsource.Amazon</extensionID>
<extensionID>com.distriqt.playservices.Base</extensionID>
<extensionID>androidx.core</extensionID>
</extensions>
More information on adding ANEs in this tutorial
There is no additional code required just a few additional configuration options and files that need to be packaged with your application.
Add the following to your manifest additions inside the application
tag.
<!-- AMAZON -->
<activity
android:name="com.amazon.device.ads.AdActivity"
android:configChanges="keyboardHidden|orientation|screenSize" />