Description
This is a follow up of the old #307. We are still unable to get Sentry to run on the Cordova shell of our React app (which runs both on the browser and on native environments via Cordova loading the web code inside of it).
It took me quite a while to get back to this because of #311, which developed into #320 - and I'm unable to make sure that is gone, since I can't even say for sure if the plugin is working as expected.
Environment
- sentry-cordova 1.2.0 (which seems to require 7.34.0 from the inner packages)
- sentry/react 7.34.0
- Intel macOS 13.4.1
- cordova 12.0.0
- cordova-ios 6.3.0 (testing on an iPhone 14 emulator)
- cordova-android 12.0.1 (haven't tested on Android yet)
Expected Result
Errors coming from the React side would report the same way we already have from the web-based version.
Errors coming from the Cordova side would report with different tags and details, as configured in the Cordova code.
Actual Result
Edit: after writing everything under the separator below, I found out about the debug
option. Enabling it from the Cordova side I see the Dedupe processor drops any single call to captureMessage()
, for instance, and no network call is done. This happens from the Cordova and the Sentry libs. Multiple calls with the same message start to yield a warning about being a duplicate of a previously captured event......... But nothing ever showed to my Issues panel (and yep, my sampling rate is 100%, as you can see below where I can get stuff to show up by simply skipping the Cordova SDK).
And even then... the capture call returns an new event ID, every time. Does it make sense?
I couldn't enable debug on the React side, it complains about being a non-debug bundle; I'm using the NPM sentry/react package there, so not sure what I did wrong.
Trying to be sure what's going on, I initialized the React side with
window.SentryReact = Sentry
, and similarly on the Cordova side.
If I comment out the Cordova Sentry.init()
, I can (obviously) see window.Sentry.SDK_VERSION == '7.34.0'
(thus, React package). Sentry reports as usual, e.g. with window.Sentry.captureMessage('a')
causing some extra network calls to your servers.
However, when both init calls are present (with the Cordova one coming first, since it's the one who loads the React code), only the Cordova version is reporting native errors.
In this case, Sentry
and SentryCordova
are the Cordova SDK, while SentryReact
remains "nameless" (no SDK_NAME
) but with SDK_VERSION == '7.34.0'
.
No call to captureMessage('b')
yields anything in my Issues panel (nor any network call), from any of the three variables, but Sentry.nativeCrash()
does yield a native report on my panel, after the app is restarted! Maybe that works because the report happens right on load, before the React code lands?
No problem shows up on the JS console, when inspecting the Cordova app from Safari (even if I call captureMessage('b')
from the console).
Also, setting window.Sentry = null
right after the Cordova init leads to it still being null after React loads. It also doesn't help SentryReact
to capture anything. I guess Sentry places itself in the global scope before initialization?
Further thoughts
I wonder if such issues happen because Sentry may rely on the global window.Sentry
, which could be including conflicting code? Or they both cling to the same error handler, instead of stacking different handlers... Although I was previously instructed to be sure I was running the same inner-dependencies, which it seems I am.
I'm open to suggestions on this scenario, since if we tell the React code to skip Sentry.init()
when window.Sentry
already has something in it, we will end up having very different reports between the web app and the cordova-wrapped one - we will miss Replay, Browser Tracing and other goodies (including React-specific features). And on the other hand, with only the React library enabled (as we are now), we lose (are losing!) any native errors.
I wonder if it would be possible to have the Cordova plugin running but only listening to native issues, instead of living in the JS context as well? I found the enableNative
option, but no JS counterpart.
Metadata
Metadata
Assignees
Type
Projects
Status