Overview
Fuse SDK supports displaying full-screen ads in multiple formats, such as app-open ads, interstitial ads, rewarded ads and rewarded interstitial ads (defined by the config).
You can show full screen ads using the FuseFullScreenAdView
class.
Full-screen ads are created and displayed as a two-step process:
- Create an instance of a
FuseFullScreenAdView
object with a zone code - Call the
show()
method to display the ad
It is recommended that you create the FuseFullScreenAdView
object early, to give it time to download the ad before you want to display it. See examples, which illustrate how to do this efficiently.
FuseFullScreenAdView
publishes lifecycle events, such as when the ad was loaded or dismissed. You can add a listener to receive these events (FuseFullScreenAdViewDelegate
on iOS or FuseFullScreenAdViewListener
on Android, see further details here).
Display ad multiple times
Same instance of FuseFullScreenAdView
can be used to display full-screen ad multiple times.
After an ad gets dismissed, it will start loading the next one so it can be displayed again.