Android Interstitial ads add test device?

Gooey picture Gooey · Feb 9, 2014 · Viewed 14.8k times · Source

You can easily add test devices with banner ads so you don't get banned by accidentally clicking on them. However I cannot find how to add test devices to interstitial ads. I assume you also can be banned if you click accidentally on them.

Can you add test devices to these and if so, how? I can't find it on the official google guide, nor on SA. How to get test ad Banners and test Interstitial ads working for adMob? did look promising, but there was no answer on how to add test devices.

Answer

Sagar Shah picture Sagar Shah · Feb 9, 2014

Can you add test devices to these and if so, how?

So here you go:

// request test interstitial ads
        AdRequest adRequestInterstitial = new AdRequest.Builder()
            .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
            .addTestDevice(testDeviceId)
            .build();

// request test banner ads
  AdRequest adRequestBanner = new AdRequest.Builder()
            .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
            .addTestDevice(testDeviceId)
            .build();