目前正在"react-native-navigation": "2.0.0-experimental.304"
运行"react-native-sentry": "^0.8.1"
在 react-native-navigation 的设置中,它要求用户修改AppDelegate.m
以看起来更像这个示例,它替换RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation...
为[[RCCManager sharedInstance] initBridgeWithBundleURL:jsCodeLocation];
由于我不再引用rootView
我无法将其传递给哨兵设置方法[RNSentry installWithRootView:rootView];
如何访问该原件rootView (RCTRootView)
以便将其传递给 Sentry?
谢谢您的帮助