1

Using IronSource mediation loading a banner fails with error empty waterfall. SDK intitialization itself finishes successfully.

BannerDelegate didFailToLoadWithError(_:)Optional(Error Domain= Code=606 "Empty waterfall" UserInfo={NSLocalizedDescription=Empty waterfall})

I load a banner as following:

let bannerSize: ISBannerSize = ISBannerSize(description:"ISBannerSize_BANNER", width:320, height:50)
IronSource.loadBanner(with: self, size: bannerSize)

I use the string ISBannerSize_BANNER for a standard banner as it says in the official documentation.

enter image description here

asked Feb 6, 2024 at 9:32

1 Answer 1

0

The problem is with the ISBannerSize parameter. It should be BANNER, LARGE, RECTANGLE...

let bannerSize: ISBannerSize = ISBannerSize(description:"BANNER", width:320, height:50)

for SMART

let bannerSize: ISBannerSize = ISBannerSize(description:"SMART", width:0, height:0)
answered Feb 6, 2024 at 9:32
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.