User Consent Screen
Library for demonstrating a ready-made consent screen for the collection, processing, and usage of user data.
Release Version 1.0.3 | Release Date 4/10/2023
The information provided below is not legal advice. Madex is not responsible for the consequences of its use. Before making legally significant decisions, it is recommended to consult with a lawyer.
General Information
To comply with the requirements of app stores and laws regulating the collection, processing, and usage of user personal data, obtaining the user's consent for the mentioned actions is required. If refused, no user data should be collected.
In addition to user consent, you will need to properly prepare a privacy policy and other documents required by app stores and the laws of the countries where your app is published.
Clear consent for the collection, processing, and usage of user data is required by most countries. Here are a few key documents describing this process:
GDPR (General Data Protection Regulation, Regulation (European Union) 2016/679)
COPPA (Children's Online Privacy Protection Rule)
CCPA (California Consumer Privacy Act)
Please note that this list is not exhaustive. It is recommended to study the legislation regulating user personal data in the countries where your app is published and consult with a lawyer before making legally significant decisions.
Consent screen and Consent Manager
Usually, user consent is obtained on a special screen during the first launch of the app — the consent screen.
Madex SDK implements such a screen, and you can add and customize it using the Consent Manager library. You can use it to avoid creating the Consent Screen yourself.
Demo Application
Use our demo application as an example.
Installation
Configure Podfile
Install Madex SDK. Detailed installation process is described in the corresponding section.
Add the dependency for installing Consent Manager to the
Podfile
file.
Save the file and run pod install in the terminal in the project folder.
Run the command
pod install
in the terminal to install the dependencies.
Setting up Consent Manager
Before using the user consent screen, it needs to be configured.
To set parameters, call the methods of the builder
variable. Below is a list of all available settings:
appendPolicyURL
- sets the link to your app's privacy policy. Consider this parameter as mandatory. Links to Madex's and our partners' privacy policies are already added to the consent screen.appendBundle
- sets a custom Bundle used to set the app's icon in the TopBar of the user consent screen. If the parameter is not filled, the existing app icon will be displayed.appendName
- sets the name of your app in the TopBar of the user consent screen. If the parameter is not filled, the existing app name will be displayed.appendGDPR
- adds a button for refusing data collection. Consent screen with one button: the option to refuse data collection is available to the user only through device settings.Consent screen with two buttons: the option to refuse data collection is available to the user by tapping the "No thanks" button.
Take a look at the complete example of setting parameters:
Working with Consent Manager
Initialization
We recommend calling SDK initialization in your ViewController
- in the viewDidLoad
method
Displaying the Permissions Request Screen
To display the screen, call the showConsentWindow
method.
Checking the User's Consent Status
If the user has given consent to data collection, the method will return true
.
If the method returns false
, it is strongly recommended not to collect any data about this user.
Updating the User's Consent Status (SDK method for advertising)
To update the consent status in the Madex SDK (for advertising purposes), use the setUserConsent
method.
Other Madex SDK methods (for working with ads) can be found in the corresponding section.
Debug Mode
If you need error and event logging, enable debug mode. By default, it is turned off.
To enable debug mode, use the enableDebug
method.
Event Tracking
Consent Manager allows you to track events related to user consent for data collection.
To track events, do the following:
Create an extension for
ViewController
and inherit it from the interface for event tracking.
Associate your event tracking
ViewController
with the Consent Manager SDK. Usually, theViewController
that works with Consent Manager is also the class for event tracking, so you can specifyself
as the delegate property.
Last updated