Privacy
Families Policy
Section titled “Families Policy”If your application is targeting minors (exclusively or not), you need to comply with the requirements established by Google Play’s Families Policy.
To facilitate the compliance of these policies, the SDK lets you specify if the ad requests are targeted to minors, in addition to the ability to set the maximum content rating.
It is very important to comply with these requirements, and carefully review the related policies, to avoid any issues with Google Play.
Child directed content
Section titled “Child directed content”To specify if a user is a minor or not, you need to include the following code before initializing the SDK:
// true -> The user is a minor or the age is unknown// false -> The user is an adultAdSettings.setChildDirected(context, true)// true -> The user is a minor or the age is unknown// false -> The user is an adultAdSettings.setChildDirected(context, true);If the user age is unknown, the app must treat that user as if they were a minor.
Content rating
Section titled “Content rating”To specify the maximum content rating, the following code must be added before initializing the SDK:
AdSettings.setMaxAdContentRating(context, AdContentRating.G)AdSettings.setMaxAdContentRating(context, AdContentRating.G);The following values are available when specifying the content rating:
| Value | Description |
|---|---|
AdContentRating.G | Content suitable for minors |
AdContentRating.PG | Content suitable for most audiences with parental guidance |
AdContentRating.T | Content suitable for teens |
AdContentRating.MA | Content suitable only for adults |
Additional requirements
Section titled “Additional requirements”If you app is directed to children, exclusively or not, you need to remove the Facebook adapter that is included in our SDK due to not being certified by Google Play yet for its use with children.
To do this, you need to modify the SDK integration in the build.gradle file to specify the exclusion of the adapter, as shown below:
implementation('com.wortise:android-sdk:x.y.z') { exclude group: 'com.google.ads.mediation', module: 'facebook'}© 2026 Wortise. All rights reserved.