Hi Jess,
Thank you for contacting the Mobile Ads SDK Support team.
By reviewing your concern, I understand that you are implementing non personalized ads.
Non-personalized ads are ads that are not based on a user’s past behavior.
Although Non-personalized ads don’t use cookies or mobile ad identifiers for ad targeting, they do still use cookies or mobile ad identifiers for frequency capping, aggregated ad reporting, and to combat fraud and abuse. Therefore, you must obtain consent to use cookies or mobile ad identifiers for those purposes where legally required, such as in certain countries in the European Economic Area (EEA) per the ePrivacy Directive.
I would recommend you to follow this link for more information.
![]() |
Mobile Ads SDK Team |
Hi,
Thank you for reaching out to us.
Please note that If you're using non-personalized ads in your apps for Europe and the UK, it's generally considered that you don't need a GDPR consent message because non-personalized ads do not rely on the collection or use of personal data for ad targeting. However, it's essential to ensure that your ad implementation is genuinely non-personalized and doesn't involve any form of user tracking or data collection.
To use cookies for AdMob, follow these simplified steps:
Please reach out to us, if you need any further assistance.
Hi dersekranda,
Thank you for getting back to us.
There is no sample project available. I would recommend referring to this link to implement the GDPR in your application and ensure you've added the Google User Messaging Platform SDK to your app to enable it to gather consent.Hi Jess,
Thank you for getting back to us.
Yes, there is a way to completely disable the Mobile Ads SDK or prevent it from utilizing cookies.
To do this, you can add the following code to your app's AndroidManifest.xml file:
<application>
...
<application>
<meta-data
android:name="com.google.android.gms.ads.enabled"
android:value="false" />
</application>
This will disable the Mobile Ads SDK entirely. If you only want to prevent the Mobile Ads SDK from utilizing cookies, you can add the following code to your app's AndroidManifest.xml file:
<application>
...
<application>
<meta-data
android:name="com.google.android.gms.ads.cookieless"
android:value="true" />
</application>
This will prevent the Mobile Ads SDK from utilizing cookies.
However, this is a necessary step to comply with GDPR and give users the option to opt out of cookies.
Please reach out to us, if you need any further assistance.
![]() |
Mobile Ads SDK Team |
Hi Jess,
Thank you for getting back to us.
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.
@J
The Google Mobile Ads SDK reads the TFC spec from local storage. This applies to all Google-certified CMPs but you should consult with that specific consent management platform to confirm.
For a solution only using the Google Mobile Ads SDK, see Consent for cookie settings to set this up.
Thanks,
Justin
@dersekranda
Is your app served for children only? If so, we recommend to set the tagForUnderAgeOfConsent to true. There will be no GDPR message because there is a minimum required age for consent. Even though there will be no message, this is in compliance. If you are also using the Google Mobile Ads SDK, you should also set this to true so to not serve personalized ads.
Thanks,
Justin