Hello everybody,
My game finally approved from google play store. However, I cannot reach ads data from dashboard. It says “No data for this time period”. But under transparent background I can see that impression count is 45. What is happening? My ads script is :
using UnityEngine;
using UnityEngine.Advertisements;
public class AdvScript : MonoBehaviour
{
string GooglePlay_ID = “myIDHereAndICheckedIt”;
bool testMode = false;
void Start()
{
Advertisement.Initialize(GooglePlay_ID,testMode);
}
public void DisplayInterstitialAD()
{
if (GameObject.Find(“ButtonCreator”).GetComponent().adCounter % 2 == 0)
{
Advertisement.Show();
}
}
}
Am I doing something wrong? I checked services link Unity Project ID with dashboard Project ID and it matches as well. Nothing seems wrong. But can’t see any ad data in dashboard :S
Thank you for your answers