How do implement rewarded videos in a game?

How can I do that?

1 Like

Try admob / enhance/ defVideoAds from the Defold Asset Portal
They all have their own ways of dealing with ads and what to do when the ads are shown, But you’ll find them useful.

2 Likes

If you choose my AdMob extension, you can simply call

admob.show('rewarded')

https://docs.spiralcodestudio.com/extension/admob/show/

And you would receive an event with reward details in the admob listener
https://docs.spiralcodestudio.com/extension/admob/event/admob/phase/

6 Likes

Thanks

1 Like