Privacy & Regulations
Nimbus iOS SDK can be configured as necessary to respect users consent for data collection and privacy.
COPPA
The app can let the Nimbus SDK know if it is governed by COPPA (Children’s Online Privacy Protection Act) regulations established by the USA FTC.
Nimbus.shared.coppa = true
GDPR
The app can manage user’s consent for data protection, e.g. GDPR (General Data Protection Regulation).
var user = NimbusUser()
user.configureGdprConsent(didConsent: true, consentString: "optional_consent_string")
NimbusAdManager.user = user
If you would like GDPR to apply to all of your ad requests, regardless of from where they originate, we can do this for you. Contact us.
CCPA
The app can also manage user consent for privacy in the United States, eg. CCPA, e.g. CCPA (California Consumer Privacy Act) by setting the privacy string.
Do this before setting up any demand providers
Nimbus.shared.usPrivacyString = "privacy_string"
It is important that you check with counsel when deciding whether or not to use the privacy string. Understand that we are not giving legal advice. If you have questions about Nimbus’ CCPA implementation, please talk to your Nimbus Representative and ask for our CCPA whitepaper.