Wiki

Clone wiki

AATKit Corona Sample / AATKitUserEarnedIncentive

aatkit.AATKitUserEarnedIncentive


Type Number Library aatkit.* Keywords PROPERTY


Overview

Notifies that placement has earned incentive (by rewarded ads).

Example

local aatkit = require "plugin.aatkit"

...

function aatkitCallback( event )
    if event.id == AATKitUserEarnedIncentive then
        print("AATKitUserEarnedIncentive")
        print( event.placement )
    end
end

Updated