skip to Main Content

After upgrading to the latest version of react-native I’ve suddenly run into the issue with RCTFabric.

    "react-native": "0.74.0",
1. No type or protocol named 'RCTDebuggingOverlayViewProtocol'
2. Use of undeclared identifier 'DebuggingOverlayShadowNode'
3. Use of undeclared identifier 'DebuggingOverlayShadowNode'
4. Use of undeclared identifier 'RCTDebuggingOverlayHandleCommand'

Did anyone face something like this?

RCTFabric issue

2

Answers


  1. I have the exact same issue. Unluckily no solution found yet.

    Login or Signup to reply.
  2. see this link: https://github.com/facebook/react-native/issues/34625#issuecomment-1917685509

    I had the same issue when upgrading to RN 0.73.3.

    Clean your project, delete yarn.lock and ios build folder. Run yarn and pod install. This should fix it. This has nothing to do with git, so do not attempt to do weird stuff with git, you will lose your files.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search