LGPD (Lei Geral de Proteção de Dados Pessoais) requires you to scope your user's consent. A user is within the LGPD scope for your app when one more of the following apply:
- The user is currently located in Brazil
- The user has registered with the app as a Brazilian resident
- The app is specifically targeted to Brazilian users
Alert
User Consent Not Passed
If you do not pass the user’s consent to the DT FairBid SDK, only contextual ads will be shown to that user and your revenue might be negatively affected.
We recommend that the first time you gather a user’s consent, you pass it onto the DT FairBid SDK before initializing it. The SDK will then take the user’s consent into consideration when initializing. In the following sessions for that user, you will only need to call the API in the event that the user updates his or her consent (the SDK caches the consent).
Once you have collected the user’s consent, you can pass it onto the SDK using the following API:
User Consent Given
UserInfo.setLgpdConsent(true, context); // true if you have the user’s consent
User Consent NOT Given
UserInfo.setLgpdConsent(false, context); // false if you have the user’s consent
You can read more about LGPD here.