From 7d9e379338cd84fada1f6bb59bad1750a92a4036 Mon Sep 17 00:00:00 2001 From: Aleksandr Zavadkin Date: Tue, 9 Dec 2025 17:12:39 +0300 Subject: [PATCH] docs(tracking): user received on mobile push method description Android Signed-off-by: Aleksandr Zavadkin --- source/includes/_tracking.md.erb | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/source/includes/_tracking.md.erb b/source/includes/_tracking.md.erb index cecf959..57a6466 100644 --- a/source/includes/_tracking.md.erb +++ b/source/includes/_tracking.md.erb @@ -1226,11 +1226,23 @@ sdk.notificationReceived(code: "i7ykuagkjgfs", type: "mobile_push_transactional" ``` ```kotlin -// Automatically called from SDK when receiving data from firebase +/* + +In the Android SDK, the event reporting for received push notifications is handled automatically when a message is delivered from FCM. + +If the standard integration is used, the developer does not need to implement or call any additional methods. + +*/ ``` ```java -// Automatically called from SDK when receiving data from firebase +/* + +In the Android SDK, the event reporting for received push notifications is handled automatically when a message is delivered from FCM. + +If the standard integration is used, the developer does not need to implement or call any additional methods. + +*/ ``` ```jsx