We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Starts from version 2.1.7. When you create BannerAdUnit with BannerParameters, it ignores the ad size passed in the constructor.
adUnit = new BannerAdUnit(CONFIG_ID, WIDTH, HEIGHT); BannerParameters parameters = new BannerParameters(); parameters.setApi(Arrays.asList(Signals.Api.MRAID_2, Signals.Api.OMID_1)); adUnit.setBannerParameters(parameters);
As a result, the response will be:
Invalid request format: request.imp[0].banner has no sizes. Define "w" and "h", or include "format" elements
Expected behavior The ad size must be set up by the constructor if there is no ad sizes in BannerParameters.
The text was updated successfully, but these errors were encountered:
fix: BannerAdUnit size problem #722
ad04ab7
5e86702
ValentinPostindustria
Successfully merging a pull request may close this issue.
Describe the bug
Starts from version 2.1.7. When you create BannerAdUnit with BannerParameters, it ignores the ad size passed in the constructor.
As a result, the response will be:
Expected behavior
The ad size must be set up by the constructor if there is no ad sizes in BannerParameters.
The text was updated successfully, but these errors were encountered: