public void LogSocial(SocialHitBuilder builder) { if (builder.Validate() == null) { return; } if (GoogleAnalyticsV4.belowThreshold(logLevel, GoogleAnalyticsV4.DebugMode.VERBOSE)) { Debug.Log("Logging social."); } mpTracker.LogSocial(builder); }
public void LogSocial(SocialHitBuilder builder) { InitializeTracker(); if (builder.Validate() != null) { if (belowThreshold(logLevel, DebugMode.VERBOSE)) { UnityEngine.Debug.Log("Logging social."); } androidTracker.LogSocial(builder); } }
public void LogSocial(SocialHitBuilder builder) { InitializeTracker(); if (builder.Validate() == null) { return; } if (belowThreshold(logLevel, DebugMode.VERBOSE)) { Debug.Log("Logging social."); } mpTracker.LogSocial(builder); }
public void LogSocial(SocialHitBuilder builder) { InitializeTracker(); if (builder.Validate() == null) { return; } if (GoogleAnalyticsV4.belowThreshold(logLevel, GoogleAnalyticsV4.DebugMode.VERBOSE)) { Debug.Log("Logging social."); } #if UNITY_ANDROID && !UNITY_EDITOR androidTracker.LogSocial(builder); #elif UNITY_IPHONE && !UNITY_EDITOR iosTracker.LogSocial(builder); #else mpTracker.LogSocial(builder); #endif }
public void LogSocial(SocialHitBuilder builder) { InitializeTracker(); if (builder.Validate() == null) { return; } if (GoogleAnalyticsV3.belowThreshold(logLevel, GoogleAnalyticsV3.DebugMode.VERBOSE)) { Debug.Log("Logging social."); } #if UNITY_ANDROID && !UNITY_EDITOR androidTracker.LogSocial(builder); #elif UNITY_IPHONE && !UNITY_EDITOR iosTracker.LogSocial(builder); #else mpTracker.LogSocial(builder); #endif }