일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- AndroidStuido
- PlayStore
- apk
- Font
- 오류
- 개발
- permission
- 안드로이드
- AndroidStudio
- 배포
- React
- 리액트네이티브
- javascript
- error
- 자바스크립트
- Android
- ReactNative
- 개발자
- 권한
- IOS
- 리액트
- AppDeveloper
- 코딩
- 에러
- 앱배포
- Today
- Total
Jion의 개발일지
[React Native] RCTBridge required dispatch_sync to load RCTDevLoadingView. This may lead to deadlocks. 본문
[React Native] RCTBridge required dispatch_sync to load RCTDevLoadingView. This may lead to deadlocks.
jion.developer 2022. 3. 19. 14:24
🆘 😕 에러명
react-navigation v6 버전을 설치 후, 아래의 warning이 발생하였다.
RCTBridge required dispatch_sync to load RNGestureHandlerModule. This may lead to deadlocks
❓ 🧐 원인
react-native (일부) 노드 모듈 패키지를 설치할 때 발생하는 에러로 짐작된다.
📌 😋 해결
./ios/AppName/AppDelegate.m. 파일 내에 #import "AppDelegate.h". 문 바로 뒤에 다음을 추가한다.
#if RCT_DEV
#import <React/RCTDevLoadingView.h>
#endif
참고
https://github.com/facebook/react-native/issues/16376
RCTBridge required dispatch_sync to load RCTDevLoadingView. This may lead to deadlocks · Issue #16376 · facebook/react-native
I randomly get this warning at iOS app start (i.e. not always). Is this a bug report? Yes Have you read the Contributing Guidelines? Yes Environment OS: macOS Sierra 10.12.6 Node: 6.10.2 Yarn: 1.0....
github.com
RCTBridge required dispatch_sync to load RCTDevLoadingView. This may lead to deadlocks
I get this in logs: RCTBridge required dispatch_sync to load RCTDevLoadingView. This may lead to deadlocks This is leading to an issue where the rendered content in React leads to alignment ...
stackoverflow.com