Push tokens

Push tokens are used for Audience Builder and client callbacks. They are also required for uninstall and reinstall tracking.

You can send your push notification token to Adjust once you have got it, or when its value changes. To do this, call the Adjust.setPushToken with your token.

Java
Javascript
// Send the token with context (recommended)
Adjust.setPushToken(pushNotificationsToken, context);

// Send the token without context (not recommended)
Adjust.setPushToken(pushNotificationsToken);