override fun provideFriendlyObstructions(): List<FriendlyObstruction> {
val obstructions = arrayListOf<FriendlyObstruction>()
getTogglePlaybackButton()?.let {
ImaSdkFactory.getInstance().createFriendlyObstruction(
it,
FriendlyObstructionPurpose.VIDEO_CONTROLS,
"This is the player's playback toggle button."
).apply {
obstructions.add(this)
}
}
getToggleFullscreenButton()?.let {
ImaSdkFactory.getInstance().createFriendlyObstruction(
it,
FriendlyObstructionPurpose.VIDEO_CONTROLS,
"This is the player's fullscreen toggle button."
).apply {
obstructions.add(this)
}
}
getToggleMuteButton()?.let {
ImaSdkFactory.getInstance().createFriendlyObstruction(
it,
FriendlyObstructionPurpose.VIDEO_CONTROLS,
"This is the player's mute toggle button."
).apply {
obstructions.add(this)
}
}
return obstructions
}
provideFriendlyObstructions().forEach {
adDisplayContainer?.registerFriendlyObstruction(it)
}
mAdDisplayContainer.registerFriendlyObstruction(
ImaSdkFactory.getInstance().createFriendlyObstruction(
mPlayButton, FriendlyObstructionPurpose.VIDEO_CONTROLS, "This is the player's play button."
)
);
Hi Toby,
I work with Arnaud and will be assisting you today.
Referencing on the information that you've shared I was now able to reproduce the issue that you're facing, please see attached screenshot. That being said, allow me to share this with the rest of the team to check further and someone from us will get back to you once we have our findings.
Regards,
Sherwin Diesta
Hi Toby,
Thank you for following up. The team is currently in a testing phase about this issue. However, let me follow up this with the team to get a feedback. We'll get back to you once we receive an update.
Hi there,
Thank you for reaching out to us with regards to your concern. Yes you are correct, there seems to be an undocumented check we are working to remove, but basically it requires all detailed reasons to be:
- Less than 50 characters
- Only include a-z, A-Z, 0-9, and . (periods)
Please find the workaround to resolved your case for now, until the fixed is publicly released. You may want to check our latest releases for an update.
Regards,
|
||||||