Development/Error

[warn] RCTBridge required dispatch_sync to load RCTAccessibilityManager. This may lead to deadlocks

mefd 2024. 2. 6. 07:59
728x90

[warn] RCTBridge required dispatch_sync to load RCTAccessibilityManager. This may lead to deadlocks

 

해결 :

react-native 버전이 너무 최신이라서 발생

한 단계 낮은 reactnative로 설치하니해당 메시지 뜨지 않고 정상 빌드 되었음.

 

npx react-native init 프로젝트이름 --version 특정버전

예)

npx react-native init 프로젝트이름 --version 0.73.2

 

# 이미 프로젝트를 설치한 경우!

package.json 파일에서

"react-native": "0.73.2"

원하는 버전으로 수정 후 

터미널에서 

npm install  후 다시 실행해 본다

728x90