일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- sqoop
- 숭실대
- 애플 디벨로퍼 아카데미 후기
- 운영체제
- react
- Swift 문법
- 네이버 치지직
- 앱 비교 프로젝트
- swift문법
- iOS 개발 오류
- Swift 디자인패턴
- 신입 ios 개발자
- OS
- apple developer academy 후기
- 제앱소
- 네이버 부스트캠프
- Swift 기능
- 신입ios개발자회고
- 애플 디벨로퍼 아카데미 21주차 회고
- 데이터베이스
- 애플 아카데미 후기
- SWIFT
- global soop
- 개발회고
- 소프트웨어분석및설계
- Apple Developer Academy @ POSTECH
- 개발자 회고
- 애플 디벨로퍼 아카데미
- 신입 개발자
- ios개발자
Archives
- Today
- Total
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- sqoop
- 숭실대
- 애플 디벨로퍼 아카데미 후기
- 운영체제
- react
- Swift 문법
- 네이버 치지직
- 앱 비교 프로젝트
- swift문법
- iOS 개발 오류
- Swift 디자인패턴
- 신입 ios 개발자
- OS
- apple developer academy 후기
- 제앱소
- 네이버 부스트캠프
- Swift 기능
- 신입ios개발자회고
- 애플 디벨로퍼 아카데미 21주차 회고
- 데이터베이스
- 애플 아카데미 후기
- SWIFT
- global soop
- 개발회고
- 소프트웨어분석및설계
- Apple Developer Academy @ POSTECH
- 개발자 회고
- 애플 디벨로퍼 아카데미
- 신입 개발자
- ios개발자
Archives
- Today
- Total
사과하는 제라스
ERROR Error: Reanimated 2 failed to create a worklet, maybe you forgot to add Reanimated's babel plugin? 본문
React Native 공부
ERROR Error: Reanimated 2 failed to create a worklet, maybe you forgot to add Reanimated's babel plugin?
Xerath(제라스) 2022. 6. 30. 10:35목차
728x90
반응형
ERROR Error: Reanimated 2 failed to create a worklet, maybe you forgot to add Reanimated's babel plugin?
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가 떴었다. babel plugin문제라고 느꼈고 검색해본 결과 babel.config.js에 plugins: ['react-native-reanimated/plugin'],가 빠져있던 것이었다.
Solution
//babel.config.js
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: ['react-native-reanimated/plugin'],
};
Error: Reanimated 2 failed to create a worklet — Maybe You Forgot to Add Reanimated’s babel Plugin?
The solution…
javascript.plainenglish.io
728x90
반응형