Last active
January 8, 2020 18:46
-
-
Save flurrydev/ad28c494d70f164d553879f3857da166 to your computer and use it in GitHub Desktop.
Android User Properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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