Bidapp Ads
  • 🎁Ab_dout
  • Integration
    • iOS
      • Getting started
      • Additional Settings
      • App Policy Settings
      • Serverless Settings
      • Interstitial Ads
      • Rewarded Ads
      • Banner Ads
      • SKAdNetwork
      • SwiftUI
    • Android
      • Getting started
      • Additional Settings
      • App Policy Settings
      • Serverless Settings
      • Interstitial Ads
      • Rewarded Ads
      • Banner Ads
      • Jetpack Compose
  • PLUGINS
    • Kotlin Multiplatform
      • Getting started
      • Android Platform Setup
      • iOS Platfrom Setup
      • App Policy Settings
      • Interstitial Ads
      • Rewarded Ads
      • Banner Ads
    • Unreal Engine
      • Getting started
      • App Policy Settings
      • Interstitial Ads
      • Rewarded Ads
      • Banner Ads
      • MREC
    • Unity
      • Getting started
      • Android
      • iOS
      • App Policy Settings
      • Interstitial Ads
      • Rewarded Ads
      • Banner Ads
Powered by GitBook
On this page
  • GDPR
  • CCPA
  • COPPA

Was this helpful?

  1. Integration
  2. iOS

App Policy Settings

When utilizing the Mediation Networks SDKs, it is your responsibility to ensure compliance with relevant privacy regulations. If you collect and/or transmit personally identifiable information independently, you must safeguard and manage that data appropriately. Similarly, you bear full responsibility for accurately gathering and transmitting consent values and age-related flags to Bidapp and Mediation Networks, regardless of whether you employ your own consent mechanism or a third-party API.

Use developer APIs for transmitting applicable consent and age-related flags to Bidapp and Mediation Networks.

GDPR

Set the GDPR consent value to @YES/true if user consent is given, otherwise @NO/false.

BIDConsent.GDPR = @(YES);
BIDConsent.GDPR = true

CCPA

Set the CCPA consent value to @YES/true if user consent is given (e.g. opt in sale), otherwise @NO/false (e.g. opt out sale).

BIDConsent.CCPA = @(YES);
BIDConsent.CCPA = true

COPPA

Set the COPPA value to @YES/true if user is subject to COPPA regulations (e.g. user is a kid, an age restricted user), otherwise @NO/false (e.g user is an adult)

BIDConsent.COPPA = @(YES);
BIDConsent.COPPA = true
PreviousAdditional SettingsNextServerless Settings

Last updated 1 year ago

Was this helpful?