Hi,
Currently, I'm facing the ad limit.
I read that if a user keeps clicking on the displayed ads, this will violate AdMob policy, and as the app developer, I'm the responsible to handle this situation.
I'm using the latest version of AdMob SDK 21.1.0
AdRequest adRequest = new AdRequest.Builder().build();
InterstitialAd.load(activity, StringUtils.getString(R.string.INTERSTITIAL_ADMOB), adRequest, new InterstitialAdLoadCallback() {
@Override
public void onAdLoaded(@NonNull InterstitialAd interstitialAd) {
interstitialAd.show(activity);
interstitialAd.setFullScreenContentCallback(new FullScreenContentCallback() {
@Override
public void onAdDismissedFullScreenContent() {
adsCallBack.onAdClosed();
}
});
}
});
Is there any way I can dismiss the interstitial ad if the user clicks on it ONE time, or just prevent them from clicking on it twice?