Hi Arnauegea,
Thank you for reaching out to us.
With regard to your concern, can you confirm if you're able to get ads properly? If yes, then your implementation is correct. Then, for the 0 status, can you confirm if this is the ads activity mainly the request? If this is what you're referring to, I would suggest reaching out to the Product Support Team as it seems that it has something to do with what the ad inventory has.
Regards,
|
||||||
Hi Arnauegea,
Thank you for your response.
If you're unable to get non personalized ads when it is not EEA, I would suggest checking this Forward consent to the Google Mobile Ads SDK. The default behavior of the Google Mobile Ads SDK is to serve personalized ads. If a user has consented to receive only non-personalized ads, you can configure an AdRequest object to specify that only non-personalized ads should be requested.
Hi Arnauegea,
Thank you for your response.
Can you confirm if you're asking for an example on where you should put the ad request after the consent of UMP is used? If yes, you can refer to this sample code implementation to get non personalized ads that usually display for user's that are not eea. Then, you just need to add it inside your implementation in configuring if UMPConsentStatusNotRequired.
Hi Arnauegea,
Thank you for your response.
As I mentioned previously, if you want to display only non personalized ads, you need to enforce the request that only requests non personalized ads. You can check this sample code and implement it under your ConsentInformation.ConsentStatus.NOT_REQUIRED. You may try the following details below.
if(consentInformation.getConsentStatus() == ConsentInformation.ConsentStatus.NOT_REQUIRED) {
From this
AdRequest request;
request = new AdRequest.Builder().build();
adView.loadAd(request);
To something like this
Bundle extras = new Bundle();
extras.putString("npa", "1");
AdRequest request = new AdRequest.Builder()
.addNetworkExtrasBundle(AdMobAdapter.class, extras)
.build();
adView.loadAd(request);
}
Let me know if this works for you, and if this is what you want to accomplish in your end.
|
||||||
Hi Arnauegea,
Thank you for your response.
Can you provide us a screen recording of what is happening in your app while using the .DEBUG_GEOGRAPHY_NOT_EEA and without it? So that we can have a better look of the behavior that is happening. You may follow the guide below on where you can send it.
If the file(s) you are looking to share are less than 25mb in total you can attach them to this case on your next reply. If you are having trouble attaching your file to this case or if your file(s) are larger than 25mb, you can share your files with me by performing the following steps:
1. Navigate to https://docs.google.com/forms/d/e/1FAIpQLSfkAiXMeYP-fw1W3Z-tT9uwmATEKO5X6S-th0gR2ezdKaaqfg/viewform?usp=pp_url&entry.400550049=Mobile+Ads+SDK&entry.460850823=5004Q00002W6aMzQAJ&entry.80707362=00094052
2. Fill out all fields, and attach your file(s).
3. Please reply back on this thread when you have uploaded your file(s). Please do not share this link.
Regards,
|
||||||