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
Ensure your game does not show additional Privacy, Terms of Use, GDPR, or ATT popups to avoid duplicate requests for users.
In Applovin Integration Manager settings, enable "Enable MAX Terms and Privacy Policy Flow" settings

You must have
Google Ad ManagerandGoogle AdMobadapters installed and the keys setup. Ask your manager for these keys

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

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?