Trying to open an app from a killed via React Navigation, using the example from the docs (Notifications - Expo Documentation). Notifications.getLastNotificationResponseAsync(); is always returning null. Is this a versioning problem? looks like this was an issue in the past.
Expo v42
expo-notifications": “~0.12.3”,
code:
const response = await Notifications.getLastNotificationResponseAsync();
console.log(“response”, response)
console.log("from closed " + prefix + “postingDescription/” + response?.notification.request.content.data.postingID)
return response ? prefix + “postingDescription/” + response?.notification.request.content.data.postingID : null