= new InterstitialAd(this); interstitialAd.setAdUnitId(getString(R.string.interstitial_ad_unit_id)); interstitialAd.setAdListener(new AdListener() { @Override public void onAdLoaded() { interstitialAd.show(); } @Override public void onAdFailedToLoad(int errorCode) { // Move on with the app } @Override public void onAdClosed() { // Proceed to the next level. } }); return interstitialAd; }
Don’t add Interstitials at every 3rd click 3. Keep Banner Ads either on Top or Bottom 4. If Ad doesn't load, then move on 5. Don’t click on live ads in test apps