appnext.getCloseDelay()

Type Function
Return value Number
Revision Release 2024.3703
Keywords ads, advertising, Appnext, getCloseDelay
See also appnext.setCloseDelay()
appnext.*

Overview

Relevant for full-screen and rewarded ads only. Gets the "close" button delay for the ad.

Syntax

appnext.getCloseDelay( adKey )
adKey (required)

String. The ad key returned for a previously created ad.

Example

local appnext = require( "plugin.appnext" )

local function adListener( event )
    print( "Received " .. event.event .. " for " .. event.adKey .. " with message: " .. event.message )
end

-- Initialize the Appnext plugin
appnext.init( adListener )

-- Create your ads
local fullscreenPlacementID

local platform = system.getInfo( "platformName" )
if ( platform == "iPhone OS" ) then
    fullscreenPlacementID = "YOUR_IOS_FULLSCREEN_PLACEMENT_ID"
elseif ( platform == "Android" ) then
    fullscreenPlacementID = "YOUR_ANDROID_FULLSCREEN_PLACEMENT_ID"
end

local fullscreenAdKey = appnext.createAd( "fullscreen", fullscreenPlacementID )

appnext.setCloseDelay( fullscreenAdKey, 5.5 )

print( "Close button delay: " .. appnext.getCloseDelay( fullscreenAdKey ) )