skip to Main Content

My app was working and All of the sudden I started getting this error when i try building with xcode.
I would really appreciate any help

I cleaned the build folder, Deleted Derived data content and still having the same issue

2

Answers


  1. I also have this issue when trying to build the project after RN upgrade from "0.63.4" version to the latest("0.73.2").

    But if I build it successfully, then I get this error:
    SCREENSHOT

    Login or Signup to reply.
  2. If you are using Reanimated latest version,
    add this in babel.config.js

    your babel.config.js will look like this

    module.exports = {
      presets: ['module:@react-native/babel-preset'],
      plugins: [
        'react-native-reanimated/plugin',
      ],
    };
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search