I have trying to show full screen ads in my app using following code:
AdRequest.Builder adRequestBuilder = new AdRequest.Builder();
AdRequest adRequest = adRequestBuilder.addTestDevice(AdRequest.DEVICE_ID_EMULATOR).build();
interstitial = new InterstitialAd(this);
interstitial.setAdUnitId(this.getText(R.string.full_screen_ad_unit_id).toString());
interstitial.loadAd(adRequest);
if(interstitial.isLoaded())
{
interstitial.show();
}
But in emulator and in real device adMob showing the live ads instead of test ads.
This will create major problem for me i.e. it may block my admob account because of invalid impression or invalid clicks.
I have following this tutorial.
So please help me to resolve this problem?