Type Function Return value none Revision 2017.3060 Keywords ads, advertising, Appnext, setRewardsCustomParameter See also appnext.getRewardsCustomParameter() appnext.*
Effects rewarded video ads only. Pass any custom value/data.
appnext.setRewardsCustomParameter( adKey, rewardsCustomParameter )
String. The ad key returned for a previously created ad.
String. The rewards custom parameter to be sent for the ad.
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 rewardedPlacementID
local platform = system.getInfo( "platformName" )
if ( platform == "iPhone OS" ) then
rewardedPlacementID = "YOUR_IOS_REWARDED_PLACEMENT_ID"
elseif ( platform == "Android" ) then
rewardedPlacementID = "YOUR_ANDROID_REWARDED_PLACEMENT_ID"
end
local rewardedAdKey = appnext.createAd( "rewarded", rewardedPlacementID )
appnext.setRewardsCustomParameter( rewardedAdKey, "YOUR_REWARDS_CUSTOM_PARAMETER" )