public static void addSessionCallbackParameter(string key, string value) { if (!IsEditor()) { AdjustAndroid.AddSessionCallbackParameter(key, value); } }
public static void addSessionCallbackParameter(string key, string value) { if (!Application.isEditor) { #if UNITY_IOS AdjustiOS.AddSessionCallbackParameter(key, value); #elif UNITY_ANDROID AdjustAndroid.AddSessionCallbackParameter(key, value); #elif (UNITY_WSA || UNITY_WP8) AdjustWindows.AddSessionCallbackParameter(key, value); #else Debug.Log(errorMsgPlatform); #endif } }