Hi all,
I'm requesting non-personalized ads via "npa" , "1" like so:
Bundle extras = new Bundle();
extras.putString("npa","1");
request = new AdRequest.Builder() //request is an instance var
.addNetworkExtrasBundle(AdMobAdapter.class, extras)
.build()
And then load the banner with bannerAdView.loadAd(request); and load my interstitials using myIntAdView.loadAd(request);
There are no errors, however, I've just noticed that AdMob still reports the targeting type on some of these ads (banner and interstitial) as 'personalized'.
I'm not using mediation, just AdMob, could this be an error with the reporting? Somer kind of teething trouble? Or am I doing something wrong here like maybe I have to create a new AdRequest every time I load an ad?
Thanks all, appreciate any advice