Esempio n. 1
0
    /// <summary>
    /// Set the currency cents value of a userflow.
    /// </summary>
    public static void SetUserflowValue(string name, int value)
    {
#if UNITY_IOS
        CrittercismIOS.SetUserflowValue(name, value);
#elif UNITY_ANDROID
        CrittercismAndroid.SetUserflowValue(name, value);
#endif
    }
Esempio n. 2
0
 public static void SetTransactionValue(string userflowName, int value)
 {
     CrittercismAndroid.SetUserflowValue(userflowName, value);
 }
Esempio n. 3
0
 public static void BeginUserflow(string name, int value)
 {
     CrittercismAndroid.BeginUserflow(name);
     CrittercismAndroid.SetUserflowValue(name, value);
 }