Skip to main content

Overview

Encore requires user identification to track entitlements and prevent abuse across devices. You can also set user attributes to enable targeted offers and personalization.

Anonymous Users

Encore automatically generates a random user ID that persists until the user deletes/reinstalls your app or calls reset(). This anonymous ID is stored securely on the native side and allows entitlement tracking to work immediately without requiring explicit user identification.

Identified Users

If you use your own user management system, call identify when you have a user’s identity:
This enables the SDK to:
  • Associate promotional access with your user account
  • Sync entitlements across devices when the user logs in
  • Track conversion attribution accurately

Setting User Attributes

User attributes enable personalized offers, audience targeting, and conversion context tracking. Set attributes using the EncoreUserAttributes class. All values are strings; use the custom map for app-specific fields:
You can also set attributes when identifying:
setUserAttributes() merges with existing attributes — it does not replace them.

Resetting User Identity

When a user logs out, call reset():
This will:
  • Reset the user ID to a new auto-generated anonymous ID
  • Clear cached entitlement data
  • Clear all user attributes

Full Example


Apps Without Login

If your app doesn’t require users to log in, you don’t need to call identify. The SDK uses an auto-generated anonymous ID. You can still set attributes:

Next Steps