Hello
I am following a tutorial on youtube. In this tutorial there are two buttons to show ads on press. When I press the button … well AD is showing, but if for instance I call the method in the “OnEnable” or in Start… AD won’t show, despite LOG saying that method is called
string GooglePlay_ID = "MyNumber";
bool TestMode = false;
private void Start()
{
Advertisement.Initialize(GooglePlay_ID, TestMode);
ShowAD();
}
public void ShowAD()
{
Debug.Log("Show");
Advertisement.Show();
}
Could you please explain me why?
Thanks!