Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Disabling Analytics prevents RemoteConfig from working

Discussion in 'Unity Remote Config' started by julien-b, Feb 16, 2021.

  1. julien-b

    julien-b

    Joined:
    May 8, 2015
    Posts:
    31
    Hi,
    To be able to update my iOS app and avoid using userid from Analytics. I disabled it from the services in the editor.
    But if I add

    Code (CSharp):
    1. Analytics.initializeOnStartup = false;
    2. Analytics.enabled = false;
    then RemoteConfig is not working anymore.
    I thought RemoteConfig was not dependant from Analytics anymore, am I wrong ?

    Thanks
     
  2. JeffDUnity3D

    JeffDUnity3D

    Joined:
    May 2, 2017
    Posts:
    14,446
    @julien-b Be sure to be using Remote Config 2.0.1, do you see the same issue?
     
  3. julien-b

    julien-b

    Joined:
    May 8, 2015
    Posts:
    31
    Ok. It works now. I was using the last verified version 1.0.9 and tried 1.4.0 too. I thought the Analytics dependency was removed with 0.2.1
    Regards