리액트 네이티브 버전을 업그레이드 할 때 발생했던 버그입니다.
ios>>AppDelegate.mm 파일을 변경하여 해결,
File: AppDelegate.mm
Before:
RCTAppSetupPrepareApp(application);
After:
RCTAppSetupPrepareApp(application, true);
Before:
UIView *rootView = RCTAppSetupDefaultRootView(bridge, @"Mobile", initProps);
After:
UIView *rootView = RCTAppSetupDefaultRootView(bridge, @"YOUR_PROJECT", initProps, true);
from @hemanthAppmaker of https://github.com/facebook/react-native/issues/36293