From bd124f2355065ba19b96bed9dfcf7fddb4379c11 Mon Sep 17 00:00:00 2001 From: akhiljain1907 Date: Thu, 7 May 2026 14:49:28 +0530 Subject: [PATCH] Read me update for MobileCore.setPushIdentifier as in iOS the pushIdentifier string should be hex encoded. --- packages/core/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/core/README.md b/packages/core/README.md index 1a242a0a5..af4ec02e9 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -526,6 +526,10 @@ Submits a generic event containing the provided push token with event type `gene setPushIdentifier(pushIdentifier?: string) ``` +**Note**: +- **Android**: The FCM token can be passed directly as a string. +- **iOS**: The APNs device token must be passed as a hex-encoded string. Passing a non-hex string will result in a corrupted token being registered. + **Example** ```typescript