2.1.0
What's Changed
Prebid SDK
-
Multiformat ad units in Original API by @ValentinPostindustria in #610
-
Fix session finish problem by @ValentinPostindustria in #615
Deprecated Items
The following classes and methods have been deprecated in the scope of introducing multiformat ad units. They still work, but eventually, they will be removed from the SDK:
org.prebid.mobile.BannerBaseAdUnit.Parameters
was deprecated. Useorg.prebid.mobile.BannerParameters
.org.prebid.mobile.VideoBaseAdUnit.Parameters
was deprecated. Useorg.prebid.mobile.VideoParameters
.org.prebid.mobile.BannerAdUnit#setParameters()
was deprecated. Useorg.prebid.mobile.BannerAdUnit#setBannerParameters()
.org.prebid.mobile.VideoBaseAdUnit#setParameters()
was deprecated. Useorg.prebid.mobile.VideoBaseAdUnit#setVideoParameters()
.org.prebid.mobile.api.data.AdUnitFormat.DISPLAY
was deprecated. Useorg.prebid.mobile.api.data.AdUnitFormat.BANNER
.org.prebid.mobile.VideoInterstitialAdUnit
was deprecated. Useorg.prebid.mobile.InterstitialAdUnit
with the ad unit formats parameter.
InterstitialAdUnit(CONFIG_ID, EnumSet.of(AdUnitFormat.VIDEO));
org.prebid.mobile.VideoAdUnit
was deprecated.- For outstream video ads use
org.prebid.mobile.BannerAdUnit.BannerAdUnit
with ad unit formats parameter
BannerAdUnit(CONFIG_ID, WIDTH, HEIGHT, EnumSet.of(AdUnitFormat.VIDEO));
- For instream video ads use
org.prebid.mobile.BannerAdUnit.InstreamVideoAd
.
- For outstream video ads use
Full Changelog: 2.0.9...2.1.0