AppLovin / AppLovin-MAX-Unity-Plugin

127 stars 35 forks source link

Is it possible to determine whether `MAX Terms And Privacy Flow` was enabled in Applovin Integrations Manager? #443

Open kekchpek opened 2 weeks ago

kekchpek commented 2 weeks ago

Feature Description

I want to build my application with different configurations and handle different consent flows during runtime. For this I have to know if Applovin setting MAX Terms And Privacy Flow enabled or not. Maybe it is possible now, but I havn't found any API for this.

santoshbagadi commented 1 week ago

@kekchpek we don't have a way to check whether or not it is enabled at runtime, but you can enable/disable at runtime by setting the following SDK extra parameter before initializing our SDK.

MaxSdk.SetExtraParameter( "consent_flow_enabled", "true"/"false" );

Note that the flow should still be enabled in the Integration Manager and this method needs to be called before initializing the SDK.