Questions tagged [unityads]

Unity Ads is a games-only video ad network for iOS and Android that can be used to monetize an existing player base and gain new players through ad campaigns.

Useful links:

121 questions
5
votes
10 answers

Unity Ads error from Unity to Xcode build

I recently built my project fine from Unity to Xcode and it ran perfectly well. Since then I have added the Unity ads to my project in Unity (and then realised I no longer need that as it comes inside of unity 5.3 with Services) so I removed the…
Clive Smith
  • 51
  • 1
  • 1
  • 6
3
votes
2 answers

Unity Ads test mode false but it is showing test ad every time

I published my mobile game on google play and after publishing I set the unity test mode to false on my database. Since I got this data from the database, I don't need to update the game again. Unity test mode comes true or false but no matter what…
3
votes
1 answer

Unity Ad not displaying as i am getting Unity Ads was not able to get current network type due to missing permission

Here is my initilization of unity ads mAdView = findViewById(R.id.adView); UnityAds.initialize(this, RentC.getApp().GAMEID, null, RentC.getApp().isTestMode, true); BannerView mBannerView = new BannerView(this, adUnitId, new UnityBannerSize(320,…
3
votes
0 answers

Unity Ads Showing Only in Editor

I'm trying to implement Unity Ads on my game that I'm planning on deploying on iOS, but for some reason they are only appearing in the editor (where it says "Everything Seems to be Working!") but every time I build to my iPhone 5s, the ads don't pop…
user6233050
3
votes
1 answer

I'm trying use Unity Ads to my game, but doesn't work

I made a game and I'm using Revmob already, but I would like use Unity Ads. I already modified my AndroidManifest following the instructions of the integration guide in Unity, but it is not showing the ads. In AndroidManifest I modified following…
I. Matheus
  • 29
  • 3
2
votes
1 answer

Your app contains the "com.unity3d.ads:unity-ads",Google Play still received the rectification notice

Your "XXX" app (version code: 15) contains the "com.unity3d.ads:unity-ads" SDK or an SDK that one of your codebases relies on that collects personal or sensitive data, including But probably not limited to null identifiers. Per the User Data Policy,…
jinlan
  • 31
  • 1
  • 2
2
votes
0 answers

Unity test ads suddenly stopped working in builds but works in editor without any errors

So I implemented Unity ads into my android game a few days ago and it worked like intended up until now. It suddenly stopped showing test ads on android builds but still works just as it did before in the editor. No code has been changed that could…
burr
  • 41
  • 5
2
votes
1 answer

UnityAds Crashes at beginning

my app crashes when i using UnityAds with no internet connection. it happens when my first scene try to start. but when i use internet connection, my game start correctly. using unity 2017.3.1f1 and Xcode 9.3. it crashes at: 2018-04-25…
BlackMB
  • 230
  • 6
  • 20
2
votes
1 answer

How to make AdMob Mediation stop showing Ads from AdMob and force use other networks?

Am making a game and the client said that when he get a reward Ad from UnityAds the reward callback are not executing properly, i need to test that but i can't because i am exclusivly getting Ads from AdMob even thought that our mediation group…
alaslipknot
  • 551
  • 4
  • 8
  • 24
2
votes
1 answer

Admob mediation with unity ads in Unity3D not display Unity Ads only AdMob Ads

I was implemented AdMob Mediation with Unity Ads in Unity3D. I completely added Unity Ads in AdMob Mediation Network, but my app won't showing ads from Unity Ads, it's showing ad from AdMob only. What I am missing in my script? below is my script. …
user3208987
  • 119
  • 15
2
votes
2 answers

Unity ads not initilizing automatically?

I am using unity reward based Ads in my android/iOS game. but when I check it Advertisement.IsReady (rewardVideoID); always return false. Also if check in Awake unity ads initialization is false void Awake () { Debug.Log ("Unity ads ini…
2
votes
1 answer

Unity Ads Vs Unity Ads 2.0

I want to ask is there any difference in revenue by using new unity ads 2.0 as compare to unity ads Unity Ads Unity Ads 2.0
Waqas Majeed
  • 59
  • 2
  • 9
2
votes
2 answers

How to get the ID to register a test device for unity ads

How and where can I see this number needed to register a test device in unity ads?
Uri Popov
  • 2,127
  • 2
  • 25
  • 43
2
votes
1 answer

UNITY3D - Cannot perform action after watching ad?

The following script is supposed to reward the player when the ad has been watched: public void ShowAd() { if (Advertisement.IsReady()) { var showOptions = new ShowOptions(); showOptions.resultCallback += ResultCallback; …
user6043960
1
vote
0 answers

What are the changes needed to be done on flutter project to add unity ad through Admob Mediation?

I could not find enough information on the internet on merging unity ads  through Admob Mediation in flutter. Can someone guide me in the changes needed to be done in the project after setting Mediation in Admob. The changes that need to be clear…
1
2 3
8 9