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
Post a Comment