You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got error after installing the package in my application.
ERROR Invariant Violation: ViewPropTypes has been removed from React Native. Migrate to ViewPropTypes exported from 'deprecated-react-native-prop-types'. ERROR Invariant Violation: Module AppRegistry is not a registered callable module (calling runApplication). A frequent cause of the error is that the application entry file path is incorrect. This can also happen when the JS bundle is corrupt or there is an early initialization error when loading React Native. ERROR Invariant Violation: Module AppRegistry is not a registered callable module (calling runApplication). A frequent cause of the error is that the application entry file path is incorrect. This can also happen when the JS bundle is corrupt or there is an early initialization error when loading React Native.
I'm not using ViewPropTypes anywhere in my application. this error only show after installing the yarn add react-native-media-controls react-native-slidercommand
"react": "18.0.0"
"react-native": "0.69.5"
The text was updated successfully, but these errors were encountered:
faced the same issue ,the package relies on react-native-slider which uses the removed ViewPropTypes ,
install @react-native-community/slider instead of "react-native-slider"
run your project ,the console will point you to where the errors occur
,change all the import and require statement from ""react-native-slider" to "@react-native-community/slider"
THIS IS NOT A GOOD FIX!
feel free to submit a pull request
I got error after installing the package in my application.
ERROR Invariant Violation: ViewPropTypes has been removed from React Native. Migrate to ViewPropTypes exported from 'deprecated-react-native-prop-types'. ERROR Invariant Violation: Module AppRegistry is not a registered callable module (calling runApplication). A frequent cause of the error is that the application entry file path is incorrect. This can also happen when the JS bundle is corrupt or there is an early initialization error when loading React Native. ERROR Invariant Violation: Module AppRegistry is not a registered callable module (calling runApplication). A frequent cause of the error is that the application entry file path is incorrect. This can also happen when the JS bundle is corrupt or there is an early initialization error when loading React Native.
I'm not using ViewPropTypes anywhere in my application. this error only show after installing the
yarn add react-native-media-controls react-native-slider
commandThe text was updated successfully, but these errors were encountered: