I have integrated Unity Ads in my game, and after you start the game, and view 2 - 3 ads, the game will not show ads anymore unless you exit the game, and stop the game from running in the background, then relaunch the game, then the ads will start showing again.
I am just using something simple like the example below:
void Awake()
{
Advertisement.Initialize(gameID);
}
And this is the ads call:
if (Advertisement.IsReady(“rewardedVideo”))
{
Advertisement.Show(“rewardedVideo”);
}
Thanks a lot!