Hello, I received a warning from Admob that I may experience advertising restrictions if I do not obtain user consent for my game aimed directly at children, which is live on Google Play. I was already showing ads aimed at children with TagForChildDirectedTreatment.True, Anyway I implemented the UMP sdk in my game (https://developers.google.com/admob/unity/privacy?hl=en). After consent has been gathered i request ads with child-directed setting (https://developers.google.com/admob/unity/targeting?hl=en).
But this time Google Play rejected its update because it transmits Android Advertising ID(AAID) and so on.
What am I doing wrong? Is UMP collecting information that should not be collected in child-directed apps? If I set TagForUnderAgeOfConsent = true in ConsentRequestParameters, won't UMP collect this information, so is this what I need to do? Why is there not enough information about child-directed apps when every time something new comes out? Thanks in advance
Hi,
Thank you for contacting the Mobile Ads SDK Support team.
I will check with our team regarding your query and one of my team members will reach out to you once we have an update on this. Meanwhile, your patience is highly appreciated.
![]() |
Mobile Ads SDK Team |
When using the UMP SDK, consent is not requested from the user when tagForUnderAgeOfConsent (TFUA) is set to true. Mixed audience apps should set this parameter for child users to ensure consent is not requested. In practice, when using the UMP SDK, this means ad requests for child users won’t have a TC string present, and Limited Ads is applied.
Important: The TFUA tag set on the UMP SDK is not forwarded to the Google Mobile Ads SDK. You must set the tagForUnderAgeOfConsent ad request parameter explicitly to have it applied for ad requests. See Tag an ad request for EEA, the UK, and Switzerland users for restricted data processing for more information about data processing restrictions for these users.
Please let us know if it doesn't work for you.
Thanks,
Jill
Google Mobile Ads SDK Team
Thank you this is very informative. It was set only TagForChildDirectedTreatment true when I requested an ad. Because this document (https://developers.google.com/admob/unity/targeting?hl=en) say that "The tags to enable the Child-directed setting and TagForUnderAgeOfConsent should not both simultaneously be set to true. If they are, the child-directed setting takes precedence."
Now I will set both tags (TagForUnderAgeOfConsent.True and TagForChildDirectedTreatment.True ) as you said and i don't use the UMP SDK because game is child-directed not for mixed group so i don't have to use the UMP SDK (you say that The TFUA tag set on the UMP SDK is not forwarded to the Google Mobile Ads SDK. Then there's no need to use it.)
If I do it as I explained, Will i comply with the EEA, the UK, and Switzerland users for restricted data processing regulations and not receive a warning from Admob, right?
Thank you very much.