Example #1
0
    public static void LogEvent(string eventName, Dictionary <string, string> parameters)
    {
#if UNITY_EDITOR
#elif UNITY_ANDROID
        FlurryAndroid.LogEvent(eventName, parameters);
#elif UNITY_IOS
        FlurryIOS.LogEvent(eventName, parameters);
#endif
    }
Example #2
0
    public static void LogEvent(string eventName)
    {
#if UNITY_EDITOR
#elif UNITY_ANDROID
        FlurryAndroid.LogEvent(eventName);
#elif UNITY_IOS
        FlurryIOS.LogEvent(eventName);
#endif
    }
Example #3
0
 public EventRecordStatus BeginLogEvent(string eventName)
 {
     return(FlurryAndroid.LogEvent(eventName, true));
 }
Example #4
0
 public EventRecordStatus BeginLogEvent(string eventName, Dictionary <string, string> parameters)
 {
     return(FlurryAndroid.LogEvent(eventName, parameters, true));
 }
Example #5
0
 public EventRecordStatus LogEvent(string eventName, bool timed)
 {
     return(FlurryAndroid.LogEvent(eventName, timed));
 }