I have created an account of Adwhirl and add my Admob network to it.I am not displaying any advert when I am using Adwhirl. My logcat says
To get test ads on this device, call adRequest.addTestDevice("CF95DC53F383F9A836FD749F3EF439ZW");
If I use Admob only I can set it:
adView = new AdView(this, AdSize.BANNER, "a14e9698a5e5ww3"); //Test
AdRequest adRequest = new AdRequest();
adRequest.addTestDevice("CF95DC53F383F9A836FD749F3EF439ZW");
adView.loadAd(adRequest);
But when using Adwhir, that is not possible:
AdWhirlManager.setConfigExpireTimeout(1000 * 60 * 5);
AdWhirlTargeting.setTestMode(true);
AdWhirlLayout adWhirlLayout = new AdWhirlLayout(this,"74c8934e149649e2a1211cb336f7e0b9"); //test
As I cant configure the adRequest as when I use Admob. I thought that setTestMode to true would do the trick, but it doesnt, and actually I dont really know for what is that method, as my app behavies the same that when I set to false.
So basically, how can I get on my screen a test advert with Adwhirl as I do for Admob?