adsense - What are some ways to protect admob account from getting suspended because of others making fake clicks? -


it off-topic please helpful of getting fake clicks unknown sources our admob account suspended.

for ios

you should count how many times user has clicked on ad, using delegate methods stated here. can use touchesbegan.

each time detect user clicks ad, increment value in nsuserdefaults or something. , maybe each week or month, reset value 0. way can count how many clicks every week/month.

if user clicks ad, say, more 5 times week, should stop showing ad. how? don't send gadrequest! can present uialertcontroller tell user.

for android

you should count how many times user has clicked on ad, using event listener mentioned here.

each time detect user clicks ad, increment value in sharedpreferences or something. , maybe each week or month, reset value 0. way can count how many clicks every week/month.

if user clicks ad, say, more 5 times week, should stop showing ad. how? don't send adrequest! can show toast tell user.


Comments

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -