I have configured sentry-expo in a newly created bare project, and while I’m able to log issues using Sentry.Native.captureException, it looks like unhandled errors coming from Promises are not logged at all.
For example:
new Promise(() => { throw new Error('This error will not be logged by Sentry!')});
As I understand, they should be logged as well, but I can’t seem to get them to work.