Release Notes
1.4
1.4.4
2024-09-23
New Features
Added support for native ads. See the native ads integration guide to learn more.
Added OMSDK support for both banners and fullscreen ads.
Created the AppLovin Custom Adapter, allowing to integrate RTB SDK as part of AppLovin mediation.
Improvements
Extended the
RTBBidInfo
with creative and campaign ID fields.
1.3
1.3.2
2024-07-31
API Changes
Completely reworked special API for separate loading and rendering of banner ads. See the updated integration instruction for details.
1.3.0
2024-07-08
Improvements
Added MRAID support for both banners and fullscreen formats.
Provided the bidder (DSP name) with bid responses (Check the API changes section for more information).
Implement the new
RTBBannerAd
feature that loads the banner but does not render it directly like theRTBBannerView
. See here for more information.
API Changes
Enhanced the
RTBBannerViewDelegate
by updating thebannerViewDidReceiveAd
API to include the bidder (DSP name) in the bidding response. The bidder and the bid price are now encapsulated within the newbidInfo
parameter.The new method signature is
fun bannerViewDidReceiveAd(bannerView: RTBBannerView, bidInfo: RTBBidInfo, networkName: String)
Enhanced the
RTBBannerAdDelegate
by updating thebannerAdDidReceiveAd
API to include the bidder (DSP name) in the bidding response. The bidder and the bid price are now encapsulated within the newbidInfo
parameter.The new method signature is
fun bannerAdDidReceiveAd(bidInfo: RTBBidInfo, networkName: String)
Enhanced the
RTBFullscreenDelegate
by updating thefullscreenAdDidReceiveAd
API to include the bidder (DSP name) in the bidding response. The bidder and the bid price are now encapsulated within the newbidInfo
parameter.The new method signature is
fun fullscreenAdDidReceiveAd(fullscreenAd: RTBFullscreenAd, bidInfo: RTBBidInfo, networkName: String)
RTBBidInfo
interface:
class RTBBidInfo(val priceCPM: Float, val bidder: String) {
override fun toString(): String {
return "RTBBidInfo(priceCPM=$priceCPM, bidder='$bidder')"
}
}
1.1
1.1.2
2024-03-12
Changed obfuscation settings to avoid generating potentially conflicting classes like
a.a
1.1.0
2024-02-22
Implement Google Bidding. Google Bidding can and may only be used via Gravite's mediation SDK AATKit.
1.0
Last updated