Skip to main content
28 votes
Accepted

How do I prevent inappropriate ads from appearing in my game?

Unity ads can't contain adult material: https://unity3d.com/legal/advertising-content-policy Advertising containing, linking or relating to content, goods or services in any of the following ...
Bálint's user avatar
  • 15.1k
4 votes

Removing the contains ads label from the google play store

In addition to remove the ads from you app it looks like to you need to update your ad settings in the Google Play Console. This can be found (as of 2018) by selecting the App you want to modify and ...
James McMahon's user avatar
2 votes

can you release a game made by unity free on google play store

It's all on the website. If your company currently makes more than $100k in annual gross revenues or has raised funds in excess of $100k, you are not permitted to use Unity Personal, for ...
Philipp's user avatar
  • 123k
1 vote
Accepted

How to read Unity Ads initialization code structure?

This code uses the C# ternary operator. This construct consists of three parts. A condition and two values. ...
Philipp's user avatar
  • 123k
1 vote

How to mute the background music when an ad begins to play when a scene is loaded?

Inside your ad script, add a field to point to the audio source that you want to mute: public AudioSource audioToMute; Be sure to wire this up in the Inspector ...
DMGregory's user avatar
  • 141k
1 vote
Accepted

Why does Google keep rejecting my update for my game?

So after getting an email from Google, I figured out that once your APK is rejected, you have to reupload a new APK. I was just trying to adjust the ad content in unity dashboard. So after adjusting ...
Michael Hampshire's user avatar
1 vote

Why does Google keep rejecting my update for my game?

If you target for kids or are on the family list you need to exclude anything 13+ or you won't be in compliance. If you swap that and submit you should pass
Justin Markwell's user avatar
1 vote

How do I interact ads with Unity Button?

Place the code in the if statements in a new void and call that void from the button public void ShowAd(){ [Your code here] } Then go to the button, by "On ...
Frieder Hannenheim's user avatar

Only top scored, non community-wiki answers of a minimum length are eligible