- Home /
Question by
IvanBgd · Jul 14, 2021 at 02:16 PM ·
androidmobileadsgoogle play gamesadvertising
Why are unity test ads still playing, and not actual ads
I posted a game on google play but unity ads are still playing, In the Services/Ads window Test mode is off, and ads in code are like this:
...
Advertisement.Initialize("0123456") // not my actual id;
...
public void PlayMoneyAd()
{
if (Advertisement.IsReady("Rewarded_Android"))
{
Advertisement.Show("Rewarded_Android");
}
...
} // ... means there is more code but its not important
...
Comment
Update: now ads are not showing up at all (not even unity ads).
Update: I have disabled force test mode in the dashboard, but still the same.
Answer by iFFeXInc · Jul 30, 2021 at 08:50 AM
Try to do that :
public bool testmode=false;
Advertisement.Initialize("0123456",testmode) // not my actual id;
...
public void PlayMoneyAd()
{
if (Advertisement.IsReady("Rewarded_Android"))
{
Advertisement.Show("Rewarded_Android");
}
...
} // ... means there is more code but its not important
And then check if in you services tab you have enabled test ads on !! Good Luck!!
Your answer
Follow this Question
Related Questions
Unity ads not showing at all after publishing 0 Answers
Why are Unity ads not showing up? 0 Answers
Making Money with Unity Ads 1 Answer
Mobile Ads Frameworks that support unity 0 Answers
Unity Admob glitching game screen 1 Answer