Max Consent Flow

The MAX SDK features an automatic consent flow that determines if a user needs to see the consent popup and displays it as needed.

Setup

  1. Ensure your game does not show additional Privacy, Terms of Use, GDPR, or ATT popups to avoid duplicate requests for users.

  2. In Applovin Integration Manager settings, enable "Enable MAX Terms and Privacy Policy Flow" settings

  1. You must have Google Ad Manager and Google AdMob adapters installed and the keys setup. Ask your manager for these keys

  1. Max SDK will automatically handle showing the consent flow on its own after this setup

On android, the flow differs since there is no ATT framework. Instead, it is just the Terms/Privacy prompt using the native dialog box design in non-GDPR regions; and the GDPR prompt with the 3 toggles in GDPR regions.


Privacy Button

Games must include a "Privacy" button that lets users reopen the Consent Flow screen.

Below is an example of how to call it using a MaxSDK method call

MaxSdk.CmpService.ShowCmpForExistingUser((error) =>
{
    if (error != null)
    {
        
        Application.OpenURL("https://lionstudios.cc/privacy/");
        Debug.Log("Issue showing consent window");
    }
    else
    {
        Debug.Log("Max Consent Showing");
    }
});

Last updated

Was this helpful?