Ejemplo 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
    }
Ejemplo n.º 2
0
 public static void SetTransactionValue(string userflowName, int value)
 {
     CrittercismAndroid.SetUserflowValue(userflowName, value);
 }
Ejemplo n.º 3
0
 public static void BeginUserflow(string name, int value)
 {
     CrittercismAndroid.BeginUserflow(name);
     CrittercismAndroid.SetUserflowValue(name, value);
 }