Android Problem

voidOnGUI() {
if(GUI.Button(newRect(10, 10, 150, 50), Advertisement.IsReady() ? “Show Ad” : “Waiting…”)) {
Advertisement.Show(null, newShowOptions {
resultCallback = result => {
Debug.Log(result.ToString());
}
});
}

if(GUI.Button(newRect(220, 10, 150, 50), “Get”) ){
Advertisement.Initialize (“62635”);
}
}

why the ads won’t show after several times?
and ads never show anymore…

Hi,

After how many/few impressions? As also described in other forum posts, we have an upper limit of videos per day per device, simply as there is no reason to show the same ad over and over to same user too many times. For development purposes you should enable the test mode.

/Rasmus