Skip to content

Instantly share code, notes, and snippets.

@flurrydev
Created December 12, 2018 20:46
Show Gist options
  • Select an option

  • Save flurrydev/e911b67013cdb8397679d75d0f092d61 to your computer and use it in GitHub Desktop.

Select an option

Save flurrydev/e911b67013cdb8397679d75d0f092d61 to your computer and use it in GitHub Desktop.
Flurry: Methods to log Flurry events
Flurry.EventRecordStatus LogEvent(string eventId);
Flurry.EventRecordStatus LogEvent(string eventId, bool timed);
Flurry.EventRecordStatus LogEvent(string eventId, Dictionary<string, string> parameters);
Flurry.EventRecordStatus LogEvent(string eventId, Dictionary<string, string> parameters, bool timed);
void EndTimedEvent(string eventId);
void EndTimedEvent(string eventId, Dictionary<string, string> parameters);
void OnPageView();
void OnError(string errorId, string message, string errorClass);
void OnError(string errorId, string message, string errorClass, Dictionary<string, string> parameters);
void LogBreadcrumb(string crashBreadcrumb);
Flurry.EventRecordStatus LogPayment(string productName, string productId, int quantity, double price,
string currency, string transactionId, Dictionary<string, string> parameters);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment