Quantcast
Channel: Questions in topic: "ads"
Viewing all articles
Browse latest Browse all 1416

The close button from unity ad don't do anything

$
0
0
Hi guys ! I'm tryin to implement some ads into my game. The problem i encounter is when i need to close the unity test ad with the close button. It don't close the ad. here's my code : using UnityEngine; using UnityEngine.Advertisements; public class RewardedAdsScript : MonoBehaviour, IUnityAdsListener { #if UNITY_IOS private string gameId = "####"; #elif UNITY_ANDROID private string gameId = "####"; #endif public string myPlacementId = "rewardedVideo"; public bool testMode; // Initialize the Ads listener and service: void Start() { Advertisement.AddListener(this); } // Implement IUnityAdsListener interface methods: public void OnUnityAdsDidFinish(string placementId, ShowResult showResult) { // Define conditional logic for each ad completion status: if (showResult == ShowResult.Finished) { Debug.Log("finished"); // Reward the user for watching the ad to completion. } else if (showResult == ShowResult.Skipped) { // Do not reward the user for skipping the ad. } else if (showResult == ShowResult.Failed) { Debug.LogWarning("The ad did not finish due to an error."); } } public void OnUnityAdsReady(string placementId) { Advertisement.Initialize(gameId, testMode); // If the ready Placement is rewarded, show the ad: if (placementId == myPlacementId) { Advertisement.Show(myPlacementId); } } In the console, before the ad is loading a log appears : The ad did not finish due to an error but the ad is shown and when i press the close button it show "finished " Thanks for help

Viewing all articles
Browse latest Browse all 1416

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>