Release Notes

1.4

1.4.7

2024-11-12

  • Added displaymanager and displaymanagerver parameters to bid requests

1.4.6

2024-11-07

  • Improvements for MRAID video ads.

1.4.5

2024-10-25

  • Improved OMID handling.

1.4.4

2024-09-23

New Features

Improvements

  • Extended the RTBBidInfo with creative and campaign ID fields.

1.3

1.3.4

2024-09-04

Fixes

  • Fixed DSPAdapters handling for RTBBannerView

1.3.3

2024-08-26

Fixes

  • Fixed exception in fullscreen MRAIDView's when RTBFullscreenAd.show() call

1.3.2

2024-07-31

API Changes

1.3.1

2024-07-15

Fixes

  • Fixed rare exception in fullscreen MRAIDView's onConfigurationChanged event handling

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 the RTBBannerView. See here for more information.

API Changes

  • Enhanced the RTBBannerViewDelegate by updating the bannerViewDidReceiveAd API to include the bidder (DSP name) in the bidding response. The bidder and the bid price are now encapsulated within the new bidInfo parameter.

    • The new method signature is fun bannerViewDidReceiveAd(bannerView: RTBBannerView, bidInfo: RTBBidInfo, networkName: String)

  • Enhanced the RTBBannerAdDelegate by updating the bannerAdDidReceiveAd API to include the bidder (DSP name) in the bidding response. The bidder and the bid price are now encapsulated within the new bidInfo parameter.

    • The new method signature is fun bannerAdDidReceiveAd(bidInfo: RTBBidInfo, networkName: String)

  • Enhanced the RTBFullscreenDelegate by updating the fullscreenAdDidReceiveAd API to include the bidder (DSP name) in the bidding response. The bidder and the bid price are now encapsulated within the new bidInfo 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.4

2024-04-04

  • Fixed wrong value being passed as COPPA setting

1.1.3

2024-04-04

  • First version published on Maven

1.1.2

2024-03-12

  • Changed obfuscation settings to avoid generating potentially conflicting classes like a.a

1.1.1

2024-03-07

  • Fixed reacting to consent string changes during session

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

1.0.4

2024-02-13

  • Add fullscreen close button delay (configurable from the dashboard).

Last updated