As I understand it by default Admob shows personalized advertising. Is it enough just to add the following code to change it to non-personalized and not to bathe with ConsentInformation?
Bundle extras = new Bundle(); extras.putString("npa", "1"); AdRequest request = new AdRequest.Builder() .addNetworkExtrasBundle(AdMobAdapter.class, extras) .build(); Or should ConsentInformation be added? Thanks in advance for your reply.