skip to Main Content

I get this error below when trying to build a react native app on xcode

Info.plist Error Unable to process Info.plist at path /Library/Developer/Xcode/DerivedData/.....app/Info.plist

What is info.plist? and how can i go about solving this issue.

I try creating a new Info.plist manually but it isn’t working, can xcode automatically create it

2

Answers


  1. Hi hope you are doing well. Info.plist is a file which is created when you initialize a new IOS project (React native project).

    It stores all of the info related to permissions and names etc. It is usually location in the IOS folder of your project.

    Would be great if you share the info.plist & package.json file here. There is a high chance that there might be something missing or wrong in the file and having an idea of these two files can help in solving the problem. Thanks.

    Login or Signup to reply.
    1. Check if an info.plist exists in your Xcode project, if it exists delete the .../Derived/ files and folder to force Xcode to generate new derived files.
    2. If the info.plist is missing in your project generate a new RN (npx create-react-app) project and copy it to your project
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search