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 ...
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 ...
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 ...
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.
...
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 ...
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 ...
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
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 ...
Only top scored, non community-wiki answers of a minimum length are eligible
Related Tags
unity-ads × 27unity × 23
c# × 8
advertisements × 6
android × 2
google-play × 2
admob × 2
ios × 1
music × 1
publishing × 1
facebook × 1
vuforia × 1
content-rating × 1