- Home /
Question by
IvanBgd · Jul 14, 2021 at 07:11 PM ·
mobileadsgoogle playgoogle play gamesadvertising
Why are Unity ads not showing up?
I have ads package 3.7.3, test mode is disabled, i already posted it on Play Store. Here is the part of code with ads: ('...' means there is more code but its not important for this.) p.s. i did add IUnityAdsListener
...
private void Start()
{
...
Advertisement.Initialize("4208519", false);
}
...
public void PlayMoneyAd() //Rewared ad
{
if (Advertisement.IsReady("Rewarded_Android"))
{
Advertisement.Show("Rewarded_Android");
}
AddMoney();
}
...
//void exists but i didn't paste it
if (Advertisement.IsReady("Interstitial_Android"))
{
Advertisement.Show("Interstitial_Android");
}
Comment