GDPR

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.

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

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

    // ...
    // Example of creating a dialog window.
    
    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)
        MobileAds.setUserConsent(userConsent)
    }
    
  3. Use the + setUserConsent: method to pass the received value to the Mobile Ads SDK. Data of users located in the GDPR region will be processed only if the user consents to data processing.