Skip to main content
Version: 1.0.0

Mapping App User or Device - Track Issues with Custom IDs in Appxiom SDK

Appxiom SDK allows you to assign a unique identifier to each user or device in your Android application. By setting a custom device or user ID, you can accurately track and associate all issue reports with specific users or devices in the Appxiom dashboard. This feature is ideal for effective troubleshooting and user support.

  • Simple Integration: Set a custom ID for the device or user with a single line of code.
  • Flexible Identifier: Use any string up to 256 characters as the identifier.
  • Automatic Tagging: Once set, all issue reports will include the custom ID for precise tracking.
  • Latest ID Used: If you call the API multiple times, the most recent ID will be used for all future reports.

How to Set a Custom User or Device ID

Ax.setCustomId(uniqueIdentifier);

Frequently Asked Questions (FAQ)

Q: Why should I set a custom user or device ID in Appxiom SDK?
A: Setting a custom ID helps you identify which user or device generated an issue report, making it easier to troubleshoot and provide targeted support.

Q: What is the maximum length for the custom ID?
A: The custom ID can be any string up to 256 characters.

Q: What happens if I call Ax.setCustomId() multiple times?
A: The most recent ID you set will be used for all subsequent issue reports.

Q: Where should I call Ax.setCustomId() in my app?
A: You can call it anywhere in your code.

Q: Is the custom ID visible in the Appxiom dashboard?
A: Yes, all issue reports will be tagged with the custom ID, if set.