nandanxyz
nandanxyz
Hi @romtsn , yes it is an ANR(Updated the title). Our app is in react-native and one sdk is in Java(Android). We are using sentry in both and both are...
Yes, for RN, we are using Autolinking as mentioned in [the doc](https://docs.sentry.io/platforms/react-native/)
Hi @krystofwoldrich , no we are not using `autoInitializeNativeSdk: false` in RN. But can we use sentry in both RN and Android sdk in the same project?
Thank you @krystofwoldrich On React-Native: ```js const routingInstrumentation = new Sentry.ReactNavigationInstrumentation(); Sentry.init({ dsn: , tracesSampleRate: 0.3, integrations: [ new Sentry.ReactNativeTracing({ idleTimeout: 5000, routingInstrumentation, tracingOrigins: ["localhost", /^\//, /^https:\/\//] }) ], release:...