An alias is a user-specific identifier. Aliases are used to identify all devices owned by the same user (an iPhone, an iPad etc.).
In addition, aliases are used to create segments of application users, based on user-specific properties (as opposed to application-specific properties).
Note the difference between aliases and tags: Aliases are user-specific, and each user can only have one alias (shared by all the user's devices).
Tags are app-specific and you can assign multiple tags to the same device
The alias API enables you to perform actions on a device's alias.
All the methods are callable through "Appoxee.methodName", since they are all public static methods.
Sets the device alias, replacing the current alias value.
public static boolean setDeviceAlias(String alias) |
String alias– the new string alias to be set. This alias overrides the existing alias.
true if the specified alias was set successfully; false otherwise.
Removes the device alias.
public static boolean removeDeviceAlias() |
true if the device alias was removed successfully; false otherwise.
Returns the device alias.
public static String getDeviceAlias() |
A string containing the device alias.
Removes the alias from the device's local cache.
public static boolean cleanAliasCache() |
true if the device alias was successfully removed from the local device cache; false otherwise.