Example #1
0
 public static void removeSessionCallbackParameter(string key)
 {
     if (!IsEditor())
     {
         AdjustAndroid.RemoveSessionCallbackParameter(key);
     }
 }
Example #2
0
 public static void removeSessionCallbackParameter(string key)
 {
     if (!Application.isEditor)
     {
     #if UNITY_IOS
         AdjustiOS.RemoveSessionCallbackParameter(key);
     #elif UNITY_ANDROID
         AdjustAndroid.RemoveSessionCallbackParameter(key);
     #elif (UNITY_WSA || UNITY_WP8)
         AdjustWindows.RemoveSessionCallbackParameter(key);
     #else
         Debug.Log(errorMsgPlatform);
     #endif
     }
 }