---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.6
alternate:
  - https://ads.yandex.com/helpcenter/en/dev/react-native7/coppa.md
  - https://ads.yandex.com/helpcenter/ru/dev/react-native7/coppa.md
---
> **Documentation Index:** Fetch the complete configuration index at https://ads.yandex.com/helpcenter/en/llms.txt

# COPPA

{% note alert %}

Only supported for Android.

{% endnote %}

## General information {#about}

On April 21, 2000, the Children's Online Privacy Protection Act ([COPPA](https://www.ecfr.gov/current/title-16/chapter-I/subchapter-C/part-312)) came into force. This federal law regulates the collection of personal information from children under the age of 13 by individuals or organizations under US jurisdiction. According to this act, app administrators must include methods for obtaining parental or guardian consent in their privacy policies and are responsible for protecting children's privacy and safety online, which includes imposing restrictions on marketing.

Information about the user's age must be passed to the SDK with every app launch.

Starting with version 5.4.0, the Yandex Mobile Ads SDK will allow you to restrict data collection from children under the age of 13.

## Short guide {#instruction}

Information about the user's age must be passed to the SDK with every app launch.

1. Follow [these instructions](https://ads.yandex.com/helpcenter/en/dev/react-native7/quick-start.md) to integrate the Yandex Mobile Ads React Native SDK.
2. Show a dialog box prompting the user to consent to the processing of their personal data.
3. Use the `setAgeRestrictedUser` method to pass the received value to the Yandex Mobile Ads SDK. By default, all users are assumed to be over the age of 13.

```ts
MobileAds.setAgeRestrictedUser(true);
```
