Search Unity

Bug Analytics.DataPrivacy stopped to work with 2019.4.1

Discussion in 'Editor & General Support' started by manutoo, Jun 19, 2020.

  1. manutoo

    manutoo

    Joined:
    Jul 13, 2010
    Posts:
    524
    Hello,

    for some reason the "#if ENABLE_CLOUD_SERVICES_ANALYTICS" at the start of DataPrivacy.cs (from the Analytics package 3.3.5) is off.

    I tried to turn off & back on the support for Analytics in the Services tab, but it didn't change anything...

    It was working fine in 2019.4.0 yesterday.

    Bug Report #1257155
     
    Last edited: Jun 19, 2020
  2. manutoo

    manutoo

    Joined:
    Jul 13, 2010
    Posts:
    524
    Got the solution from the Customer QA Team : just need to change from :
    Code (CSharp):
    1. Analytics.DataPrivacy.FetchPrivacyUrl(OpenUrl, OnFailure);
    to :
    Code (CSharp):
    1. DataPrivacy.FetchPrivacyUrl(OpenUrl, OnFailure);