How to find Xcode file?

Viewed 38

Inside of my Xcode project I have an awsconfiguration.json file. However whenever I build the project xcode says error: /Users/hunter/Desktop/project5/awsconfiguration.json: No such file or directory (in target 'project5' from project 'project5'). This error began to show after I pushed the project to GitHub and tried to run it on a different computer. The file shows up in the project navigator but is greyed out. How can I fix this?

1 Answers
  1. Please check if awsconfiguration.json exists in your local project
  2. Please check if * .json was added to your git ignore file?
  3. Please check your GitHub for awsconfiguration.json file
Related