Hi guys, I’m implementing Y8 SDK in my game. I created a Y8 storage account and uploaded my HTML5 game on it. The login system is working properly. I’m now trying to show ads following the documentation. I initialized ads after SDK initialization like this:
<script type="text/javascript">
ID.Event.subscribe('id.init', function() {
ID.ads.init('12345');
});
</script>
Then I called the following method when players start a match in my game:
// Pause game and sounds
ID.ads.display(function() {
// Resume game and sounds
});
But every time I’m getting this error:
sdk.js:9 Waiting for ad strategy
No retries left, giving up
Why is that? I’m not able to show any ads because of this.