React-Native를 M1 Mac에서 개발 시 짜증을 해결해줄 아티클(Feat. Apple M1 MacBook Pro)
라이브러리를 설치하고 pod install이 안되는 점
그냥 pod install
을 하게 될 경우, 다음과 같은 에러를 마주 침
NoMethodError - undefined method `present?' for nil:NilClass
다음과 같이 설치해보자
yarn install && cd ios && bundle exec pod install
Error: [Reanimated] valueUnpacker is not a worklet, js engine: hermes
// babel.config.js
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: ['react-native-reanimated/plugin'], // 플러그인 추가
};
npx react-native start --reset-cache