ERROR : Invariant Violation: ViewPropTypes has been removed from React Native. Migrate to ViewPropTypes exported from 'deprecated-react-native-prop-types'., js engine: hermes
React-Native를 최신버전으로 업데이트 하면서 ViewPropTypes 를 더이상 지원하지 않음으로 인한 에러
아래 경로에서
node_modules/react-native/camera/src/RNCamera.js
제거
import { ViewPropTypes } from 'react-native'
추가
import { ViewPropTypes } from 'deprecated-react-native-prop-types';