Open
Description
I am working on the InRead Teads implementation in my app.
InReadAdViewListener
extends InReadAdBaseListener
and provide 2 error/failure methods:
public open fun onAdError(code: Int, description: String)
public open fun onFailToReceiveAd(failReason: String)
I would like to perform different actions on different error types. For example, I would like to know if there is the notFilled
error or the serverError
.
Could you provide me with possible values for:
- onAdError:
-- code
-- description - onFailToReceiveAd:
-- failreason
I checked the SDK code (which is not obfuscated) but wasn't able to find any ErrorCode
class.