Error: [Reanimated] valueUnpacker is not a worklet, js engine: hermes
Fixed it with a version downgrade:
npm install react-native-reanimated@3.4.2
And editing the babel.config.js file:
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: ['react-native-reanimated/plugin'],
};
Comments
Post a Comment