Delegate method unityAdsBannerDidShow doesn’t work in unityads 3.3.0
(in 3.2.0 everything works fine)
Probably the same issue with the following methods:
unityAdsBannerDidHide()
unityAdsBannerDidUnload()
Delegate method unityAdsBannerDidShow doesn’t work in unityads 3.3.0
(in 3.2.0 everything works fine)
Probably the same issue with the following methods:
unityAdsBannerDidHide()
unityAdsBannerDidUnload()
Those delegates, along with the entire UnityAdsBanner class, have been deprecated in favor of BannerView. I would recommend implementing iOS banners using the new API:
https://docs.unity3d.com/Packages/com.unity.ads@3.3/manual/MonetizationBannerAdsIos.html
In 3.3.0, it is expected that those API are marked as deprecated, but they should be functional. However, if there is a bug that prevents them from working correctly, then it is unlikely that it will be fixed, because they are deprecated.
So as a workaround, I would recommend using SDK 3.2.0 or using the new API in SDK 3.3.0.
I didn’t notice that. Thank you, I’ll rewrite it using new API then.