We are facing an issue with deep linking on Android.
When sending a push with Additional Data (e.g., playback_data), the data is not available in the Android Intent when the app is opened from a notification (cold start).
Observations:
-App opens correctly
-Intent and extras exist
But:
-getStringExtra("playback_data") > null
- getStringExtra("custom") > null
Dumping all extras shows no payload data
Impact:
This prevents deep link handling on Android without using Launch URL, which creates issues on iOS (browser opening).
Request:
Is this expected behavior on Android?
How can we reliably access Additional Data on notification click (cold start)?
Is there a recommended approach for deep linking without relying on Launch URL?

We are facing an issue with deep linking on Android.
When sending a push with Additional Data (e.g., playback_data), the data is not available in the Android Intent when the app is opened from a notification (cold start).
Observations:
-App opens correctly
-Intent and extras exist
But:
-getStringExtra("playback_data") > null
Dumping all extras shows no payload data
Impact:
This prevents deep link handling on Android without using Launch URL, which creates issues on iOS (browser opening).
Request:
Is this expected behavior on Android?
How can we reliably access Additional Data on notification click (cold start)?
Is there a recommended approach for deep linking without relying on Launch URL?