How to solve RCTBridge required dispatch_sync to load warning on iOS for React Native
The RCTBridge required dispatch_sync to load RCTDevLoadingView has become a common occurence when developing React Native apps with version 0.64
and 0.65
.
I came across this warning when installing packages like:
- react-native-bootsplash
- react-navigation v6
Recently, I came across an open issue on github.com/facebook/react-native that contains the following resolution for this.
Open the file ./ios/AppName/AppDelegate.m
. First, add the following just after the import statement #import "AppDelegate.h"
:
1#import "AppDelegate.h"23// Add this4#if RCT_DEV5#import <React/RCTDevLoadingView.h>6#endif7// ---------------
Then, in the @implementation AppDelegate
, before RCTRootView
, add the following:
1 #if RCT_DEV2 [bridge moduleForClass:[RCTDevLoadingView class]];3 #endif45 RCTRootView *rootView ...
Build the iOS app again by running:
yarn run ios# ornpx react-native run-ios
The warning will be gone now.
More Posts
Browse all posts