You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The current renderer design in the Prebid SDK faces the following challenges:
OS does not seem to support sending custom data in the bid request. However, the following method exists: private PluginRenderer map(PrebidMobilePluginRenderer prebidMobilePluginRenderer) { PluginRenderer pluginRenderer = new PluginRenderer(); pluginRenderer.setName(prebidMobilePluginRenderer.getName()); pluginRenderer.setVersion(prebidMobilePluginRenderer.getVersion()); pluginRenderer.setData(prebidMobilePluginRenderer.getData()); return pluginRenderer; }
Is there a way to leverage this or another method to enable sending custom data in iOS bid requests?
iOS appears to lack support for interstitial ads in the Prebid custom renderer. Are there plans to introduce this functionality, or is there a recommended approach for adding interstitial ad support?
The current issue with interstitials lies in the InterstitialController. Specifically:
The variable adViewManager (var adViewManager: PBMAdViewManager?) needs to be made public. Alternatively, should the PBMAdViewDelegate be implemented and honored by the custom renderer?
Additionally, there is no way to receive a callback for showInterstitialAd in the customAdapter.Could you clarify or suggest the best approach to address these challenges?
The renderer maintains only a single object, which causes conflicts when multiple banner or interstitial objects are created, leading to overwriting.
The existing PrebidMobilePluginRenderer is not aligned with the complete implementation of the interstitial. It has no support for the show, isReady.
To Reproduce
Steps to reproduce the behavior:
Try to create a new CustomRendere
Expected behavior
Create CustomRenderer.
Make a adRequest. The get data object is not getting called.
when it call the CustomRenderer for interstitial. There is no way to pass the delegate.
Describe the bug
The current renderer design in the Prebid SDK faces the following challenges:
private PluginRenderer map(PrebidMobilePluginRenderer prebidMobilePluginRenderer) { PluginRenderer pluginRenderer = new PluginRenderer(); pluginRenderer.setName(prebidMobilePluginRenderer.getName()); pluginRenderer.setVersion(prebidMobilePluginRenderer.getVersion()); pluginRenderer.setData(prebidMobilePluginRenderer.getData()); return pluginRenderer; }
iOS appears to lack support for interstitial ads in the Prebid custom renderer. Are there plans to introduce this functionality, or is there a recommended approach for adding interstitial ad support?
The current issue with interstitials lies in the InterstitialController. Specifically:
The variable adViewManager (var adViewManager: PBMAdViewManager?) needs to be made public. Alternatively, should the PBMAdViewDelegate be implemented and honored by the custom renderer?
Additionally, there is no way to receive a callback for showInterstitialAd in the customAdapter.Could you clarify or suggest the best approach to address these challenges?
To Reproduce
Steps to reproduce the behavior:
Try to create a new CustomRendere
Expected behavior
Please take a look into the doc.
~557058afcfd484c4054dca9577f63850333f87-Proposed Design Document- Renderer Changes for Prebid SDK-281124-063952.pdf
The text was updated successfully, but these errors were encountered: