Beta Release Notes

1.9 Beta

chevron-right1.9.0-beta3hashtag

25-10-23

Changes

  • Update the minimum supported iOS version to 13.0.

  • Use IDFV instead of IDFA when tracking is disabled, provided GDPR or CCPA consent has been granted.

chevron-right1.9.0-beta2hashtag

25-10-08

Library Updates

  • AppLovinSDK to 13.4.0

  • GoogleMobileAds to 12.12.0

chevron-right1.9.0-beta1hashtag

25-08-18

New Features

1.8 Beta

chevron-right1.8.0-beta4hashtag

2025-07-18

Fixes

  • Fix an issue with Meta signals encoding.

chevron-right1.8.0-beta2hashtag

2025-07-01

New Features

  • Introduce support for passing GPID

    • Banners:

      • let configuration = RTBBannerRequestConfiguration(placementId: <PLACEMENT_ID>, iTunesAppId: "<ITUNES_APP_ID>")
        configuration.gpid = "<YOUR_GPID_VALUE>"
        bannerView.load(configuration: configuration)
    • Fullscreen:

      • let configuration = RTBFullscreenRequestConfiguration(placementId: <PLACEMENT_ID>, iTunesAppId: "<ITUNES_APP_ID>")
        configuration.gpid = "<YOUR_GPID_VALUE>"
        fullscreenAd.load(configuration: configuration)
    • Rewarded Video:

      • let configuration = RTBRewardedVideoRequestConfiguration(placementId: <PLACEMENT_ID>, iTunesAppId: "<ITUNES_APP_ID>")
        configuration.gpid = "<YOUR_GPID_VALUE>"
        rewardedVideoAd.load(configuration: configuration)
    • Native Ads:

      • let configuration = RTBNativeAdRequestConfiguration(placementId: <PLACEMENT_ID>, iTunesAppId: "<ITUNES_APP_ID>")
        configuration.gpid = "<YOUR_GPID_VALUE>"
        nativeAdLoader?.load(configuration: requestConfiguration)

chevron-right1.8.0-beta1hashtag

2025-06-17

New Features

  • Introduced support for passing UTIQ identifier:

    • Banners

    • Fullscreen

    • Rewarded Video

    • Native Ads

1.7 Beta

chevron-right1.7.0-beta3hashtag

2025-05-27

New Features

  • Implement handling of DSP adapters for rewarded video ads.

chevron-right1.7.0-beta2hashtag

2025-05-22

New Features

  • Introduced Rewarded Video ads support for AdMob Custom Events.

  • Introduced Rewarded Video ads support in the AppLovin Mediation Adapter.

chevron-right1.7.0-beta1hashtag

2025-05-15

New Features

  • Added support for Rewarded Video ads. See the code sample below for basic integration:

1.6 Beta

chevron-right1.6.0-beta1hashtag

2025-01-15

New Features

  • Introduced support for passing user targeting before requesting new ads

    • Banners

    • Fullscreen

    • Native Ads

1.5 Beta

chevron-right1.5.0-beta3hashtag

2024-11-29

New Features

chevron-right1.5.0-beta2hashtag

2024-11-15

New Features

  • Added support for native ads in AppLovin Mediation Adapter.

  • Added displaymanager and displaymanagerver parameters to bid requests.

chevron-right1.5.0-beta1hashtag

2024-11-04

New Features

  • Added support for SKAdNetworks.

1.4 Beta

chevron-right1.4.0-beta3hashtag

2024-09-05

Fixes

  • Fix an issue with Google-Bidding banners where signlas we not being loaded properly.

chevron-right1.4.0-beta2hashtag

2024-08-22

API Changes

  • Added RTBBidInfo as a parameter to the native ads successful load event.

    • New delegate method:

    • @objc func nativeAdDidReceiveAd(_ nativeAdLoader: RTBSDK.RTBNativeAdLoader, bidInfo: RTBSDK.RTBBidInfo, networkName: String)

chevron-right1.4.0-beta1hashtag

2024-08-20

New Features

1.3 Beta

chevron-right1.3.0-beta3hashtag

2024-06-21

Fixes

  • Resolved an issue with the xcframework version specified in the plist file.

chevron-right1.3.0-beta2hashtag

Fixes

  • Remove extra viewability logs.

chevron-right1.3.0-beta1hashtag

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).

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 func 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 func 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 func fullscreenAdDidReceiveAd(_ fullscreenAd: RTBFullscreenAd, bidInfo: RTBBidInfo, networkName: String)

  • RTBBidInfo interface:

1.2 Beta

chevron-right1.2.0-beta1hashtag

2024-06-12

Improvements

  • Added MRAID support for both banners and fullscreen formats.

  • Provided the DSP name with bid responses (Check API changes for more information).

API Changes

  • Enhanced the RTBBannerAdDelegate by updating the bannerAdDidReceiveAd API to include the DSP name in the bidding response.

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

  • Enhanced the RTBBannerViewDelegate by updating the bannerViewDidReceiveAd API to include the DSP name in the bidding response.

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

  • Enhanced the RTBFullscreenDelegate by updating the fullscreenAdDidReceiveAd API to include the DSP name in the bidding response.

    • The new method signature is func fullscreenAdDidReceiveAd(_ fullscreenAd: RTBFullscreenAd, bidInfo: RTBBidInfo, networkName: String).

  • RTBBidInfo Interface:

1.1 Beta

chevron-right1.1.0-beta1hashtag

2024-02-22

Changes

  • Implement Google Bidding. Google Bidding can and may only be used via Gravite's mediation SDK AATKitarrow-up-right.

1.0 Beta

chevron-right1.0.0-beta07hashtag

2024-02-02

Changes

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

  • Use WKWebView instead of UIWebView.

  • Add sellerId parameter to the Ad Request configuration object.

Last updated