Skip to content

Privacy

If your application is targeting minors (exclusively or not), you need to comply with the requirements established by Apple.

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 Apple.

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 adult
WAAdSettings.childDirected = true

If the user age is unknown, the app must treat that user as if they were a minor.

To specify the maximum content rating, the following code must be added before initializing the SDK:

WAAdSettings.maxAdContentRating = WAAdContentRating.G

The following values are available when specifying the content rating:

ValueDescription
WAAdContentRating.GContent suitable for minors
WAAdContentRating.PGContent suitable for most audiences with parental guidance
WAAdContentRating.TContent suitable for teens
WAAdContentRating.MAContent suitable only for adults