Skip to content

Instantly share code, notes, and snippets.

@flurrydev
Last active January 8, 2020 18:46
Show Gist options
  • Save flurrydev/ad28c494d70f164d553879f3857da166 to your computer and use it in GitHub Desktop.
Save flurrydev/ad28c494d70f164d553879f3857da166 to your computer and use it in GitHub Desktop.
Android User Properties
//Sets and replaces (if any exist) the values or single value for a property.
FlurryAgent.UserProperties.set(String key, List<String> values);
FlurryAgent.UserProperties.set(String key, String value);
//Adds the values or single value to the property.
FlurryAgent.UserProperties.add(String key, List<String> values);
FlurryAgent.UserProperties.add(String key, String value);
//Removes the values or single value from the property
FlurryAgent.UserProperties.remove(String key, List<String> values);
FlurryAgent.UserProperties.remove(String key, String value);
//Removes all values from the property
FlurryAgent.UserProperties.remove(String key);
//Flag the value "true" to the property.
FlurryAgent.UserProperties.flag(String key);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment