Admob ads with Timer, Against policy?

Someone just told me that if I use AdMob ads in my app with time than my AdMob account will get suspended. So please tell me is it true?
I have only one app and there is only one ad in that app. and that ad refreshes in every 30 seconds.
So please tell me if it is wrong and can lead to AdMob account’s suspension…
I’m talking about Interstitial ad…

Thankfully my app still showing ads without any problem.
Please tell me if I’ve placed ads in the wrong way and what is the right way.

EDIT: Using the clock to load AdMob ads is against AdMob’s policy and doing this can lead your account suspension so stop doing that!!

yes, don’t use clock with admob

1 Like

then how will ads refresh?
what is the other way?

the admob component will refresh automatically, u don’t need to set anything.

1 Like

seriously? do you mean i have to load ad only first time and than it will automatically refreshes?
I’m talking about interstitial ads, by the way…

1 Like

maybe show only one time if interstitial ? btw why u want this

1 Like

Correct. But so far as I know only for banner ads.
Because it does not make sense to refresh a already shown interstitial ad :smiley:

3 Likes

he didn’t mention so :sweat_smile:

1 Like

i want this for impressions…
if there is only one ad from a user than there will so low impressions and so low earning that’s why…
but i’m totally confused now… what to do or not…

for example there is 300 users of my app and i get 800-1000 impressions per day and the earning is 1-2$ if ad loads in every 30 seconds…

if change it to one ad only then the impressions will be 300-400 only and than the earning will be below 1$

Not sure if it is directly agains admob policy, but this will increase your invalid clicks and so may bring you a lot of problems, even account termination.

1 Like

so what do you suggest?
how should I show and load ads?

There is an Option in Admob To set the Refresh rate for Banner Ads

2 Likes

I’m using only interstitial ad

Try Loading ad After users Does some Action Like after pressing 2 or 3 buttons Load an Ad

1 Like

There is an Option in Admob To set the Refresh rate for Banner Ads

He said he is talking about interstitial ads. Banners don’t even need to be refreshed, but in case of banners there wouldn’t be any problem.

1 Like

I mentioned it :smiley: I knew someone would say this :sweat_smile:

1 Like

SO IN SHORT, THE WAY I’M LOADING AD IS WRONG?:sweat:
AND I HAVE TO CHANGE IT IF NOT WANT TO GET BANNED AS SOMEONE TOLD ME, RIGHT??

It is recommended to use only the clock when the user closes the ad. Then = If (Admob.AdsInterstitial.isClosed) {
ClockAdsInterstitial = true
}

ClockAdsInterstitial.Timer {
ClockAdsInterstitial = false
Admob.AdsInterstitial.Load
}

In blocks what will do is if the ad is closed, activate the AdsInterstitial clock that has a timer of 2.5 minutes or 3 minutes, recommended to reload an ad. And when the ad is loaded, the watch is deactivated. The same works for the Banner ads, you just have to add the block to show ads on the clock.

https://support.google.com/admob/answer/2936217?hl=en&ref_topic=2745287

this is what i was looking for… thanks a lot sir…

EDIT:but wait, we are still using clock to load ads:roll_eyes:

1 Like

Can you show me your blocks of this app of interstitial ads.