Results 6 comments of ntcong91

For anyone have faced with this issue. - please change connect react redux to ``` // connect(mapStateToProps, mapDispatch)(YourComponent) connect(mapStateToProps, mapDispatch, null, { forwardRef: true })(YourComponent); ``` this will fix the...

I think this issue should be closed @prscX

+ 1 crash #ifdef RCT_MAIN_THREAD_WATCH_DOG_THRESHOLD if (RCTIsMainQueue()) { CFTimeInterval start = CACurrentMediaTime(); [_invocation invokeWithTarget:module]; CFTimeInterval duration = CACurrentMediaTime() - start; if (duration > RCT_MAIN_THREAD_WATCH_DOG_THRESHOLD) { RCTLogWarn( @"Main Thread Watchdog: Invocation...

Sorry @andresesfm. That is my code problem. Just call multiple apis at the same time like. So It blocked the UI thread. iap.getProducts();

Thanks @SectionTN the problem is raised and the problem should be resolved in the official releases.