Android Question Admob Mediation With IronSourc

SMOOTSARA

Active Member
Licensed User
Longtime User
Hey guys :)

I want to use the Mediation service on Google with IronSourc ads.

https://platform.ironsrc.com/

https://developers.ironsrc.com/ironsource-mobile/android/android-sdk/#step-1

I've done all the steps in the Ironsource service (add app and get cod and ......)
and I've also done all the steps in the Google service ( make mediation group and set cod and ...)
and my apps display well as Google admob ads.

To display ads from IronSourc and google (mediation) , what codes should I add to the program and manifest? 🤔
What files should I add to the program?🤔

I have seen this training,but for another service ==> LINK

Thank you 🌹
 

DonManfred

Expert
Licensed User
Longtime User
away from the firebase integration needed in manifest

try adding this code to your manifest

B4X:
AddApplicationText(<activity
            android:name="com.ironsource.sdk.controller.ControllerActivity"
            android:configChanges="orientation|screenSize"
            android:hardwareAccelerated="true" />
<activity
            android:name="com.ironsource.sdk.controller.InterstitialActivity"
            android:configChanges="orientation|screenSize"
            android:hardwareAccelerated="true"
            android:theme="@android:style/Theme.Translucent" />
<activity
            android:name="com.ironsource.sdk.controller.OpenUrlActivity"
            android:configChanges="orientation|screenSize"
            android:hardwareAccelerated="true"
            android:theme="@android:style/Theme.Translucent" />)
 
Upvote 0

SMOOTSARA

Active Member
Licensed User
Longtime User
away from the firebase integration needed in manifest

try adding this code to your manifest

B4X:
AddApplicationText(<activity
            android:name="com.ironsource.sdk.controller.ControllerActivity"
            android:configChanges="orientation|screenSize"
            android:hardwareAccelerated="true" />
<activity
            android:name="com.ironsource.sdk.controller.InterstitialActivity"
            android:configChanges="orientation|screenSize"
            android:hardwareAccelerated="true"
            android:theme="@android:style/Theme.Translucent" />
<activity
            android:name="com.ironsource.sdk.controller.OpenUrlActivity"
            android:configChanges="orientation|screenSize"
            android:hardwareAccelerated="true"
            android:theme="@android:style/Theme.Translucent" />)

Thank you DonManfred 🌹


Do I need to download this file and put it in the library folder?


1578001175489.png



and


I found the original Google guide but I don't know how to execute the code in Basic.:oops:

https://developers.google.com/admob/android/mediation/ironsource#add_ironsource_as_an_ad_source


and this for download jar and arr file:rolleyes:

https://bintray.com/google/mobile-a...rce#files/com/google/ads/mediation/ironsource

1578001542030.png
 
Upvote 0
Top