GDPR

Warning.

This is an archived version of the documentation. Actual documentation for all platforms can be found here.

  1. General information
  2. Quick guide

General information

The General Data Protection Regulation (GDPR) came into effect in the spring of 2018. GDPR regulates how information about citizens of the European Economic Area and Switzerland can be collected and processed. Its intention is to protect the privacy of confidential data and to ensure the transparency of all processes related to the collection, storage and processing of information on the internet.

The GDPR has an extraterritorial scope that applies to all companies that process the personal data of citizens of the European Economic Area and Switzerland, regardless of where the company is located.

Starting from version 2.11.0, the Yandex Mobile Ads SDK allows you to restrict the collection of data for users located in the European Economic Area and Switzerland who do not consent to data collection.

Quick guide

The user's consent for processing personal data must be sent to the SDK each time the application is launched.

  1. Follow the instructions for connecting the Mobile Ads SDK.
  2. Show a window where the user can accept the user agreement for personal data processing (for more information, see the example).

    Attention.

    This code is a sample, not a step-by-step guide to follow.

    ...
    // The following code demonstrates creating a dialog.
    func showGDPRDialog() {
        let alertController = UIAlertController(
            title: title,
            message: message,
            preferredStyle: .actionSheet)
        let acceptAction = UIAlertAction(
            title: "Accept",
            style: .default) { _ in
                self.setUserConsent(true)
            }
        alertController.addAction(acceptAction)
        let declineAction = UIAlertAction(
            title: "Decline",
            style: .default) { _ in
                self.setUserConsent(false)
            }
        alertController.addAction(declineAction)
        let openPrivacyPolicyAction = UIAlertAction(
            title: "View privacy policy",
            style: .default) { _ in
                UIApplication.shared.openURL(self.privacyPolicyURL)
            }
        alertController.addAction(openPrivacyPolicyAction)
        present(alertController, animated: true)
    }
    
    func setUserConsent(_ userConsent: Bool) {
        UserDefaults.standard.set(userConsent, forKey: kGDPRUserConsentKey)
    }
    
    func initializeAdsSDK() {
        let userConsent = UserDefaults.standard.bool(forKey: kGDPRUserConsentKey)
        YMAMobileAds.setUserConsent(userConsent)
    }
    
  3. Use the + setUserConsent: method to pass the received value to the Mobile Ads SDK. For users from GDPR regions, the data will be processed only if they give their consent to it.