You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A helpful tip for android implementation if your react-native activity is not the same activity as the activity designated as your launch activity is to make sure you forward your intent extras to the activity that runs your react-native bundle.
A good example is if your launch activity is a splash screen which then sends the user to your MainActivity, which runs your react-native bundle. In this case you will need to send your splash activity's intent extras to your Main Activity's intent or react-native-notifications will not have access to the notification payload via the getInitialNotification function, so things like deep linking will not be possible.
A helpful tip for android implementation if your react-native activity is not the same activity as the activity designated as your launch activity is to make sure you forward your intent extras to the activity that runs your react-native bundle.
A good example is if your launch activity is a splash screen which then sends the user to your MainActivity, which runs your react-native bundle. In this case you will need to send your splash activity's intent extras to your Main Activity's intent or
react-native-notifications
will not have access to the notification payload via thegetInitialNotification
function, so things like deep linking will not be possible.Example:
onCreate of SplashActivity:
The text was updated successfully, but these errors were encountered: