Skip to content

Instantly share code, notes, and snippets.

@flurrydev
Last active August 29, 2015 14:10
Show Gist options
  • Select an option

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

Select an option

Save flurrydev/b0f26be18854cb29e2a1 to your computer and use it in GitHub Desktop.
// Capture author info & user status
Map<String, String> articleParams = new HashMap<String, String>();
//param keys and values have to be of String type
articleParams.put("Author", "John Q");
articleParams.put("User_Status", "Registered");
//up to 10 params can be logged with each event
FlurryAgent.logEvent("Article_Read", articleParams);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment