Following the official blog post, I've recently upgraded my Expo-managed project to Expo 47 (from version 45). I've built a custom dev client for my application and installed it on my Android emulator. I'm now trying to open it with npx expo start --dev-client
, but I get an error Invariant Violation: requireNativeComponent: "RNSScreen" was not found in the UIManager
.
I've also tried to start the without dev client (npx expo start
) and it works, but obviously, it can't run some native code. I'm using React Navigation, and yes, I have the React Native Screens (~3.18.0
) library installed.
Is there a way to fix it for the dev client build?