Pour discuter de nos produits et nous faire part de vos commentaires, rejoignez le canal Discord officiel Ad Manager sur le serveur de la communauté Google Advertising and Measurement.
Ce guide décrit les étapes nécessaires pour prendre en charge le message sur les réglementations dans les États américains dans le SDK UMP. Associez ces instructions à Premiers pas, qui explique comment exécuter votre application avec le SDK UMP et configurer votre message. Les conseils suivants concernent spécifiquement le message lié aux réglementations des États américains.
Prérequis
Avant de continuer, assurez-vous d'avoir effectué les actions suivantes :
Passez à la dernière version du SDK UMP.
Pour la prise en charge des messages concernant les réglementations des États américains, nous vous recommandons d'utiliser la version 2.1.0 ou ultérieure.
Suivez les étapes de Premiers pas.
Veillez à implémenter un point d'entrée pour les options de confidentialité et à l'afficher si nécessaire. En suivant ce guide, vous disposez d'un point d'entrée pour diffuser votre message sur les réglementations des États américains à vos utilisateurs.
Si vous utilisez le message lié aux réglementations dans les États américains en même temps que d'autres messages, consultez Types de messages utilisateur disponibles pour savoir quand les différents messages s'affichent auprès de vos utilisateurs.
Définir le tag pour les utilisateurs n'ayant pas atteint l'âge minimal requis
Pour indiquer si un utilisateur n'a pas atteint l'âge de consentement, définissez
setTagForUnderAgeOfConsent (TFUA). Lorsque vous définissez TFUA sur true, le SDK UMP ne demande pas le consentement de l'utilisateur. Si votre application cible une audience mixte, définissez ce paramètre pour les utilisateurs enfants afin de vous assurer qu'aucun consentement ne leur est demandé.
Il vous incombe de définir ce paramètre lorsque cela est nécessaire pour respecter la loi COPPA et les autres réglementations applicables.
L'exemple suivant définit TFUA sur "true" dans une demande de consentement UMP :
Java
ConsentRequestParametersparams=newConsentRequestParameters.Builder()// Indicate the user is under age of consent..setTagForUnderAgeOfConsent(true).build();consentInformation=UserMessagingPlatform.getConsentInformation(this);consentInformation.requestConsentInfoUpdate(this,params,(OnConsentInfoUpdateSuccessListener)()->{// ...},(OnConsentInfoUpdateFailureListener)requestConsentError->{// ...});
Kotlin
valparams=ConsentRequestParameters.Builder()// Indicate the user is under age of consent..setTagForUnderAgeOfConsent(true).build()consentInformation=UserMessagingPlatform.getConsentInformation(this)consentInformation.requestConsentInfoUpdate(this,params,ConsentInformation.OnConsentInfoUpdateSuccessListener{// ...},ConsentInformation.OnConsentInfoUpdateFailureListener{requestConsentError->
// ...})
Lire les choix de consentement
Une fois que l'utilisateur a pris une décision concernant les réglementations des États américains, vous pouvez lire son choix à partir du stockage local en suivant la spécification de la Global Privacy Platform (GPP). Pour en savoir plus, consultez Détails dans l'application.
Notez que le SDK UMP ne renseigne que les clés IABGPP_GppSID et IABGPP_HDR_GppString.
Tester vos messages concernant les réglementations des États américains
Pour tester les messages concernant les réglementations des États américains, utilisez UMPDebugGeographyRegulatedUSStatedebugGeography pour forcer le SDK UMP à traiter votre appareil de test comme s'il était situé dans un État américain soumis à des réglementations. Vous pouvez également utiliser UMPDebugGeographyOther pour forcer la suppression des messages sur les réglementations des États américains. Pour en savoir plus sur debugGeography, consultez Forcer une zone géographique.
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/08/31 (UTC).
[null,null,["Dernière mise à jour le 2025/08/31 (UTC)."],[[["\u003cp\u003eThis guide helps you implement the US state regulations message within your Android app using the User Messaging Platform (UMP) SDK.\u003c/p\u003e\n"],["\u003cp\u003eBefore starting, update to the latest UMP SDK (version 2.1.0 or higher), complete the basic UMP setup, create a US state regulations message in Ad Manager, and review message display priorities.\u003c/p\u003e\n"],["\u003cp\u003eUse \u003ccode\u003esetTagForUnderAgeOfConsent(true)\u003c/code\u003e to indicate users under the age of consent (TFUA) and prevent consent requests for them, ensuring compliance with COPPA and other regulations.\u003c/p\u003e\n"],["\u003cp\u003eAfter user interaction, access their choices from local storage using the Global Privacy Platform (GPP) spec, focusing on \u003ccode\u003eIABGPP_GppSID\u003c/code\u003e and \u003ccode\u003eIABGPP_HDR_GppString\u003c/code\u003e keys.\u003c/p\u003e\n"],["\u003cp\u003eFor testing, use the \u003ccode\u003eUMPDebugGeographyRegulatedUSState\u003c/code\u003e debugGeography to simulate a device located in a regulated US state (available in UMP SDK version 3.1.0 or higher).\u003c/p\u003e\n"]]],[],null,["# US IAB Support\n\nSelect platform: [Android](/ad-manager/mobile-ads-sdk/android/privacy/us-iab-support \"View this page for the Android platform docs.\") [iOS](/ad-manager/mobile-ads-sdk/ios/privacy/us-iab-support \"View this page for the iOS platform docs.\") [Unity](/ad-manager/mobile-ads-sdk/unity/privacy/us-iab-support \"View this page for the Unity platform docs.\")\n\n\u003cbr /\u003e\n\nThis guide outlines the steps required to support the US states regulations\nmessage as part of the UMP SDK. Pair these instructions with\n[Get started](/ad-manager/mobile-ads-sdk/android/privacy), which details how to get your app running\nwith the UMP SDK and set up your message. The following guidance is specific to\nthe US states regulations message.\n\nPrerequisites\n-------------\n\nBefore continuing, ensure you do the following:\n\n- Update to the latest version of the UMP SDK. For US states regulations messaging support, we recommend you to use version 2.1.0 or higher.\n- Complete [Get started](/ad-manager/mobile-ads-sdk/android/privacy). Be sure to implement a privacy options entrypoint and render it if required. By completing this guide, you have an entrypoint to serve your US states regulations message to your users.\n- [Create a US state regulations message](//support.google.com/admanager/answer/10115735) for apps.\n- If you're using the US states regulations message alongside other messages, consult [Available user message types](//support.google.com/admanager/answer/10075998) to understand when different messages are displayed to your users.\n\nSet the tag for under age of consent\n------------------------------------\n\nTo indicate whether a user is under the age of consent, set\n`\n`[setTagForUnderAgeOfConsent](/ad-manager/mobile-ads-sdk/android/privacy/api/reference/com/google/android/ump/ConsentRequestParameters.Builder#public-consentrequestparameters.builder-settagforunderageofconsent-boolean-tagforunderageofconsent) (TFUA). When you set TFUA to `true`, the UMP SDK\ndoesn't request consent from the user. If your app has a mixed audience, set\nthis parameter for child users to ensure consent is not requested.\nIt is your\nresponsibility for setting this parameter where necessary to comply with COPPA\nand other relevant regulations.\n| **Important:** The UMP SDK does not forward the TFUA tag set on consent requests to the Google Mobile Ads SDK. You must explicitly set the `tagForUnderAgeOfConsent` or `tagForChildDirectectedTreatment` on ad requests. If you don't set the `tagForUnderAgeOfConsent` or `tagForChildDirectectedTreatment` on ad requests, the UMP SDK does not collect any information that allows Google to determine whether or not users under the age of consent use your app. For more information about data processing restrictions for these users, see [Tag an ad request for child-directed treatment](//support.google.com/admanager/answer/3671211).\n\nThe following example sets TFUA to true on a UMP consent request: \n\n### Java\n\n ConsentRequestParameters params = new ConsentRequestParameters\n .Builder()\n // Indicate the user is under age of consent.\n .setTagForUnderAgeOfConsent(true)\n .build();\n\n consentInformation = UserMessagingPlatform.getConsentInformation(this);\n consentInformation.requestConsentInfoUpdate(\n this,\n params,\n (OnConsentInfoUpdateSuccessListener) () -\u003e {\n // ...\n },\n (OnConsentInfoUpdateFailureListener) requestConsentError -\u003e {\n // ...\n });\n\n### Kotlin\n\n val params = ConsentRequestParameters\n .Builder()\n // Indicate the user is under age of consent.\n .setTagForUnderAgeOfConsent(true)\n .build()\n\n consentInformation = UserMessagingPlatform.getConsentInformation(this)\n consentInformation.requestConsentInfoUpdate(\n this,\n params,\n ConsentInformation.OnConsentInfoUpdateSuccessListener {\n // ...\n },\n ConsentInformation.OnConsentInfoUpdateFailureListener {\n requestConsentError -\u003e\n // ...\n })\n\nRead consent choices\n--------------------\n\nAfter the user has made a US states regulations decision, you can read\ntheir choice from local storage following the Global Privacy Platform (GPP)\nspec. For more details see,\n[In-App Details](https://github.com/InteractiveAdvertisingBureau/Global-Privacy-Platform/blob/main/Core/CMP%20API%20Specification.md#in-app-details).\nNote that the UMP SDK only populates the `IABGPP_GppSID` and\n`IABGPP_HDR_GppString` keys.\n\nTest your US states regulations messaging\n-----------------------------------------\n\nTo test your US states regulations messaging, use the\n`UMPDebugGeographyRegulatedUSState` `debugGeography` to force the UMP\nSDK to treat your test device as if the device were located in a regulated US\nstate. You can also use `UMPDebugGeographyOther` to force suppression of US\nstates regulations messages. For more details on `debugGeography`, see\n[Force a geography](/ad-manager/mobile-ads-sdk/android/privacy#force_a_geography).\n| **Note:** `UMPDebugGeographyRegulatedUSState` is only available in UMP version 3.1.0 or higher."]]