App Open
Integration
Section titled “Integration”To use App Open ads, you need to request their load at some point in the app; we recommend doing so as soon as possible.
Below you can find an example of how to load and show an ad:
// Create an App OpenWortiseAppOpen appOpenAd = new WortiseAppOpen( "Wortise Ad Unit ID");
// Request an adappOpenAd.LoadAd();
// Show the ad if availableif (appOpenAd.IsAvailable) { appOpenAd.ShowAd();}Also, the WortiseAppOpen class offers the following additional methods to configure its behaviour:
// Sets if a new ad must be loaded after closing the previous oneappOpenAd.AutoReload = true;
// Shows an ad immediately if available. Otherwise, requests the load of a// new adappOpenAd.TryToShowAd();Listener configuration
Section titled “Listener configuration”Some listeners can be added to receive the different events that may occur during the ad lifecycle. For this, you can make use of the following attributes that are available at the WortiseAppOpen class:
OnClickedOnDismissedOnFailedToLoadOnFailedToShowOnImpressionOnLoadedOnRevenuePaidOnShown
Example
Section titled “Example”appOpenAd.OnClicked += () => Debug.Log('App open clicked');appOpenAd.OnDismissed += () => Debug.Log('App open dismissed');appOpenAd.OnFailedToLoad += () => Debug.Log('App open failed to load');appOpenAd.OnFailedToShow += () => Debug.Log('App open failed to show');appOpenAd.OnImpression += () => Debug.Log('App open impression');appOpenAd.OnLoaded += () => Debug.Log('App open loaded');appOpenAd.OnRevenuePaid += (data) => Debug.Log('App open revenue paid');appOpenAd.OnShown += () => Debug.Log('App open shown');© 2026 Wortise. All rights reserved.