19
votes

i just want to know if this problem is server side...or i must fix something in my code...

onFailedToReceiveAd(Ad request successful, but no ad returned due to lack of ad inventory

I'm using admob with adwhirl to show ads in my android application.

6

6 Answers

29
votes

If you are getting this error, then your code is correct. The issue is that AdMob does not always have an ad to return for every request. This may happen particularly if you have just registered your AdMob publisher ID, as it takes some time and multiple requests before the new ID starts returning ads.

Another reason your fill rate may be low is that you don't have AdSense backfill enabled, or you have filtered out some ads. Check your app settings to see if that is the case.

Finally, a test you can run to see if your AdWhirl code is implemented correctly is to request a test ad. You can do this by specifying test mode in AdWhirl:

AdWhirlTargeting.setTestMode(true);

If you get back a test ad, you'll know your code is working as intended.

6
votes

One of the solutions you could try:

Some times this will happened if you changed language of your Android device to exotic language (Russian for example). Try to change it back to English and AdMob will find appropriate ad for you. Or you could go to the Google Settings->Ads->Reset advertising ID

2
votes

I've just found that such error is shown if your AdMob account has been banned. But it works with a test device ID.

0
votes

Note that this might happen aswell if you're using (forcing) a custom width and height for the banners.

You should use the ones that DOC states: https://developers.google.com/mobile-ads-sdk/docs/admob/intermediate#play

If you set a custom width and height like:

new AdSize( 521,300 );

It's going to reply with the error you mentioned.

0
votes

I know this was from long time ago, but here's something i did which solved this problem. 1. on your admob account, click on "manage settings" in the app you've created. 2. click on "edit". 3. under "Android Package URL:" leave blank, and then save settings.

*after you'll save, it'll show this box as "market://", which is fine.

0
votes

I had this problem when using Rewarded Interstitial (beta). Changing to Rewarded solved the problem.