I am using admob ads in my mobile app. When I gone through the guidelines I found the below statement.
If your app is automatically refreshing ads, make sure ad requests are not made when the screen is off. Also, if users navigate to and from pages with ads in an application over a short period of time, a new ad request should not be made sooner than the recommended 60 second rate.
https://support.google.com/admob/answer/3245199?hl=en
Can you please tell me what I need to do that for "make sure ad requests are not made when the screen is off"
I am using codova admob pro plugin in to integrate ads. https://github.com/floatinghotpot/cordova-admob-pro
and using the code
if(AdMob) AdMob.createBanner( {
adId: admobid.banner,
position: AdMob.AD_POSITION.TOP_CENTER,
autoShow: true } );
Thankyou.