💡 Pangle SDK supports App Open Ads from version 4300 and above, this doc is for developers who use Pangle SDK directly, if you use mediation to integrate Pangle, please jump to the link.
App open ads are a special ad format intended for publishers wishing to monetize their app load screens. App open ads can be closed at any time, and are designed to be shown when your users bring your app to the foreground.
Create an app and App Open ad placement on Pangle platform
The main steps to integrate App Open ads are:
set the host app icon when initializing the Pangle SDK.
Tips: Please follow the code below to set the appLogoImage
, otherwise the logo image won't be displayed in the App open ad.
Loading an ad is accomplished using the loadAdWithSlotID: request: completionHandler:()
method on the PAGLAppOpenAd
class. The method requires an ad slot id, an instance object of PAGOpenRequest
, and a completionHandler to be notified when ad loading succeeds or fails. The loaded PAGLAppOpenAd
object is provided as a parameter in the success callback.
PAGOpenRequest is an Ad Loading Manager. It is recommended to be the member variable of the Activity. This class can configure the load timeout period.
Use the method of PAGLAppOpenAd to load the ad, and register the completionHandler callback.
callback | description |
error | This method is invoked when an ad fails to load. It includes an error parameter of type Error that indicates what type of failure occurred. For more information, refer to the ErrorCode section |
appOpenAd | This object is returned when an ad material is loaded successfully. |
Ad event callbacks need to be registered before displaying an ad. Each method in the event callback corresponds to an event in the ad lifecycle.
PAGLAppOpenAdDelegate | description |
- (void)adDidShow:(PAGLAppOpenAd *)ad | This method is invoked when the ad is displayed, covering the device's screen. |
- (void)adDidClick:(PAGLAppOpenAd *)ad | This method is invoked when the ad is clicked by the user. |
- (void)adDidDismiss:(PAGLAppOpenAd *)ad | This method is invoked when the ad disappears. |
An instance of the PAGLAppOpenAd object will be returned when the ad is loaded successfully. Call the presentFromRootViewController:
method of PAGLAppOpenAd to show the ad.
Now you have finished the integration. If you wanna test your apps, make sure you use test ads rather than live, production ads. The easiest way to load test ads is to use test mode. It's been specially configured to return test ads for every request, and you're free to use it in your own apps while coding, testing, and debugging.
Refer to the How to add a test device? to add your device to the test devices on Pangle platform.