Can you help us please with these great tools integration. Our React Native iOS project has been using Crashlytics for several months and it works well in case of native crashes but in case of JS exceptions it required some customization of react-native logging (this Medium articles helped a lot to reach as verbose JS output as possible). In the end we didn't have as good JS errors output as we would like to have.
So we decided to integrate Sentry as well. It was done successfully, but it seems that Sentry outpaces Crashlytics catching crashes before it: we can see crashes in Sentry dashboard but no in Crashlytics' one.
My question is the next: is it possible to integrate both Crashlytics and Sentry for both case - native crashes AND JS exceptions?
Thank you in advance.
UPD 06.03.2019 Finally, we've come to the usage of only Sentry because of the next reasons:
- first of all, it doesn't require any special code for the JS events & errors well-formated output, whereas Crashlytics does;
- second, it doesn't require any manipulation with dSym files released (and probably encrypted) via Testflight;
- third, it also catches native crashes and provides a verbose output as well.