> For the complete documentation index, see [llms.txt](https://docs.didomi.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.didomi.io/integrations/google/configure-google-additional-consent-mode-app.md).

# Configure Google Additional Consent mode (app)

If you need to activate Google Additional Consent mode on mobile applications there are a few steps to follow :

1. &#x20;Ensure that your SDK version is >= 1.21.0 on Android and >= 1.31.0 on iOS.
2. &#x20;Edit your consent notice.
3. Go to your consent notice > Go to **2. Customization** > Advanced settings > Custom JSON.
4. &#x20;Insert the following code in the Custom JSON field by configuring it as "app.vendors.google" :

#### &#x20;Code to add

```
{
    "app": {
        "vendors": {
            "google": {
                "additionalConsent": {
                    "positive": "2~id1.id2.id3",
                    "negative": ""
                }
            }
        }
    }
}
```

&#x20;where 2 is the [version number](https://support.google.com/admanager/answer/9681920?hl=en), and id1, id2, id3 etc. are the IDs of your ATP vendors. For example, the value of the "positive" key could be 2\~1.35.41.101. You can find the latest Google's Ad Tech Providers IDs (ATP) list [here (https://storage.googleapis.com/tcfac/additional-consent-providers.csv).](https://storage.googleapis.com/tcfac/additional-consent-providers.csv)

Please read in the [Google's documentation](https://support.google.com/admanager/answer/9681920?hl=en) the section about the format of the AC string.

{% hint style="info" %}
Consent will be automatically transmitted to selected ATP vendors. On app, If “google” vendor is accepted on the CMP,  then these ATP vendors are automatically passed as having positive consent.
{% endhint %}

You can find these vendors consent through the addtl\_consent variable and checking Google Ad Manager calls.

📰 You can find more detailed information in [our technical documentation](https://developers.didomi.io/cmp/mobile-sdk/third-party-sdks#google-additional-consent-mode).<br>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.didomi.io/integrations/google/configure-google-additional-consent-mode-app.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
