#EndUserConsent.GetConsentState() is not functioning?
1 messages · Page 1 of 1 (latest)
What part of the Analytics package is this using?
Ah. That's brand new to Unity 6.2 and Analytics 6.1 Explains why I've not seen it before 😛
Have you logged what the ConsentStatus returns as after you do GetConsentState?
AdsIntent: Unspecified, AnalyticsIntent: Unspecified
private void CheckAnalyticsPopupFlow()
{
var state = EndUserConsent.GetConsentState();
Debug.Log(state.ToString());
if (state.AnalyticsIntent == ConsentStatus.Unspecified) ShowAnalyticsPopup();
else ShowMainMenu();
}