I’m attempting to use React Native and Sentry on my Android app.
I installed the react-native-sentry package and ran react-native link. I have also run the ./gradlew assembleRelease
command and verified the bundle + sourcemap have been uploaded.
In my app, I have:
Sentry.config(
'[MY DSN HERE]'
).install();
but when I try to fire a test like Sentry.captureException(new Error('Oops!'));
I don’t see the event appear in sentry.
Any ideas?