Description
I am trying to access react-native's jscontext using RCTBridge in my NativeModule.
In v0.44.0,
i am able to access it using
RCTJSCExecutor *jscExecutor = [self.bridge valueForKey:@"_javaScriptExecutor"];
JSContext *reactJSContext = [jscExecutor jsContext];
But in v0.45.0-rc.0,
I guess, there is no "_javaScriptExecutor" due to new Bridge implementation.
And jsContext is also removed from RCTBridge's interface.
So, how do i access it?