How do you disable Unity-Analytics calls being made.
I have searched the forums, and I haven’t found s straight forward answer that works…
I am using Unity Pro, and exporting a WebGL build, Unity 2017.2.0f3
I have disabled HW Statistics in the Player settings.
I have disabled Editor Analytics (Pro Only) in Preferences/General settings.
I have then added
Analytics.enabled = false;
Analytics.deviceStatsEnabled = false;
to a script in the awake method…
Unity continues to make make calls back to unity, https://cdp.cloud.unity3d.com/v1/events and https://config.uca.cloud.unity3d.com/. Once, when Unity starts, and two additional calls when the project loads.
How do I disable these calls?