Example #1
0
 public static void SetTestOptions(Dictionary <string, string> testOptions)
 {
     if (!IsEditor())
     {
         AdjustAndroid.SetTestOptions(testOptions);
     }
 }
Example #2
0
 public static void SetTestOptions(AdjustTestOptions testOptions)
 {
     if (Adjust.IsEditor())
     {
         return;
     }
     AdjustAndroid.SetTestOptions(testOptions);
 }
Example #3
0
        public static void SetTestOptions(Dictionary <string, string> testOptions)
        {
            if (IsEditor())
            {
                return;
            }

            #if UNITY_IOS
            AdjustiOS.SetTestOptions(testOptions);
            #elif UNITY_ANDROID
            AdjustAndroid.SetTestOptions(testOptions);
            #elif (UNITY_WSA || UNITY_WP8)
            AdjustWindows.SetTestOptions(testOptions);
            #else
            Debug.Log("Cannot run integration tests. None of the supported platforms selected.");
            #endif
        }