Home / Android / SDK Tappx Android GDPR – EU / Custom / Manual method

SDK Tappx Android GDPR – EU

Custom / Manual method

The developer must create their own consent management platform (CMP) or use a third party and re-submit the information of the user's consent to the Tappx SDK through the parameters enabled for that purpose. Using this system Tappx will not show its consent request screen.

If the user consents to the use of their data, this function should be called:

Tappx.getPrivacyManager(context).grantPersonalInfoConsent();

In this case you should also pass the gdprConsentString:

Tappx.getPrivacyManager(context).setGDPRConsent(String);

If the user does NOT consent to use their data, this function should be called:

Tappx.getPrivacyManager(context).denyPersonalInfoConsent();

For any questions regarding GDPR, you can find more information on our specific GDPR page.

The consent must be requested before showing ads to the user.

If you don’t send the consent, the SDK will assume "DO NOT CONSENT" by default, this may cause a decrease in the number of ads being displayed.