Host app developers can set user attributes (such as region or account information) using methods provided by the SDK. This is useful for scenarios like targeted push notifications.
Setting user ID
API description: The userId parameter is used to set account information.
/**
* Set the account information
* @param userId
*/
public static void setUserId(String userId)
Set location information
API description:
Parameter country indicates the user's country.
Parameter province indicates the user's province.
Parameter city indicates the user's city.
/**
* Set the location information
* @param country
* @param province
* @param city
*/
public static void setLocation(String country, String province, String city)
Was this page helpful?