@Team and Community
I’ve setup a game with Vungle incentivized video ads. The user is rewarded with in-app coins for watching a video.
However I don’t actually understand which action I should promote to the user for me to get paid by Vungle.
- Do I have to reward the user for just watching a video ad, by checking with:
[lua]if ( event.type == “adEnd” )
–reward with coins
end[/lua]
- Or maybe reward the user only when clicking the ad after watching the video with:
[lua]if event.type == “adEnd” and event.wasCallToActionClicked then
–reward with coins
end[/lua]
- Or reward the user with a coin sum depending on the action:
[lua]if event.type == “adEnd” and event.wasCallToActionClicked then
–reward with 10 coins
elseif event.type == “adEnd” and event.wasCallToActionClicked then
–reward with 20 coins
end[/lua]
… so that my metrics at Vungle get better and my payment gets higher?
Does anybody know on what user action does actually Vungle pay the developer?