Child Privacy Treatment
This section is specifically for assets declared as mixed-audience apps in the Ogury dashboard. Note that children's privacy treatment is always applied to family audience apps and is never applied to mature audience apps.
Child Privacy Declaration (Android only)
The Ogury SDK offers a method to indicate when the current user is a child, ensuring compliance with the US Children's Online Privacy and Protection Act (COPPA) and the EU General Data Protection Regulation (GDPR) where applicable:
Ogury.applyChildPrivacy(OguryChildPrivacyTreatment.UNSPECIFIED)
The applyChildPrivacy()
method can be called at any time and takes effect starting from the next Ogury ad request until the user closes the app.
This method accepts one of the constants from the OguryChildPrivacyTreatment
class:
UNSPECIFIED
Default value. It has not been specified whether the current user requires treatment under COPPA or GDPR for users below the age of consent.
CHILD_UNDER_COPPA_TREATMENT_TRUE
Specifies that the current user requires treatment under COPPA.
CHILD_UNDER_COPPA_TREATMENT_FALSE
Specifies that the current user does not require treatment under COPPA and GDPR is not applicable (e.g., users outside the European Economic Area).
UNDER_AGE_OF GDPR_CONSENT_TREATMENT_TRUE
Specifies that the user requires treatment under GDPR for users below the age of consent.
UNDER_AGE_OF GDPR_CONSENT_TREATMENT_FALSE
Specifies that the user does not require treatment under GDPR for users below the age of consent, and COPPA is not applicable.
Ad content filtering (Android only)
To ensure ad content is appropriate for your app’s target audience, you can apply content filtering using:
OguryAdRequests.setAdContentThreshold(OguryAdRequests.AD_CONTENT_THRESHOLD_G)
Like child privacy settings, this method takes effect from the next ad request and remains active until the app is closed.
The setAdContentThreshold
method accepts one of the constants from the OguryAdRequests
class:
AD_CONTENT_THRESHOLD_UNSPECIFIED
No specific content threshold is applied.
AD_CONTENT_THRESHOLD_G
Suitable for general audiences, including families.
AD_CONTENT_THRESHOLD_PG
Suitable for most audiences with parental guidance.
AD_CONTENT_THRESHOLD_T
Suitable for teens and older audiences.
AD_CONTENT_THRESHOLD_MA
Suitable only for mature audiences.
Last updated
Was this helpful?