I have implemented a rewarded video in my 2D unity game. I can watch the video but when it is done, the method called when the video is complete is not called. Here is my script :
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using System;
using GoogleMobileAds.Api;
public class rewardedVideoDrops : MonoBehaviour {
private RewardBasedVideoAd rewardBasedVideo;
public money money;
Button button;
bool loaded = false;
bool reward = false;
public void Start()
{
loaded = true;
reward = false;
button = GameObject.Find ("addDrops").GetComponent