Notifications don't open app since SDK45 (Android)

I upgraded my managed app from SDK44 to SDK45 and now, when a notification is received while the app is in background, touching the notification in Android doesn’t open the app as it used to.
The listener is called, it prints a log in the console, but then the app is not shown.

This is the listener:
Notifications.addNotificationResponseReceivedListener(response => {
console.log(received notification "${response.notification.request.content.title}");
});

This happens both in Expo GO Android and in the native Android app. When the same code is run in Expo GO Apple it correctly opens the app.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.