Im trying to initialize Sentry after I run [ReactNativeNavigation bootstrap:jsCodeLocation launchOptions:launchOptions];
but to initialize, I need access to the bridge.
In v1 I was able to use [[RCCManager sharedInstance] getBridge]
. How is this done now in v2?
Exposed the bridge in https://github.com/wix/react-native-navigation/commit/e3d5dad93c1d7f1b4f940f5623b89ad1363caad7
Now you should be able to get the bridge by calling [ReactNativeNavigation getBridge];
That was fast, thank you very much!
Most helpful comment
Exposed the bridge in https://github.com/wix/react-native-navigation/commit/e3d5dad93c1d7f1b4f940f5623b89ad1363caad7
Now you should be able to get the bridge by calling
[ReactNativeNavigation getBridge];