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
↧