Error: The file “Info.plist” couldn’t be opened because there is no such file
Asked Answered
S

6

6

I have move my project from another machine with latest Xcode installed in it. But now when i'm running project it giving me error as

Info.plist:0: error: reading data: The file “Info.plist” couldn’t be opened because there is no such file.

Previously project running with no issue but now on new system project has error. Previous version was Xcode 7.3.

Stetson answered 7/6, 2016 at 9:8 Comment(4)
Check the path of Info.plist in Build Settings. It's a relative path and probably doesn't match the new location.Amaryl
find info.plist file & Remove reference from project & add that file again to project.. This worked for me...Benison
Tried both way but no success yet...Stetson
duplicate question see the answer here #26189904Eluviation
C
11

This error happens when the system can not locate the info.plist file from your file hierarchy.

Consider this situation: I moved the info.plist file to the group "Others" like this..

enter image description here

Goto Target - Tap Build Settings - Find "info.plist"

enter image description here

Here, the system will search the info.plist in AddModifyDelete folder. But the actual file is under AddModifyDelete/Others. So, change it to AddModifyDelete/Others/info.plist

Now it should work!!

Note: This is also applicable to entitlements file. We should define the right path for both info.plist & entitlements file to avoid this error.

Cartogram answered 12/11, 2017 at 19:38 Comment(1)
@Thor Welcome :)Cartogram
S
10

Please try either of the two ways :-

First Try :

The solution for this particular instance of the error was “Info.plist couldn't be opened because there is no such file” was that I had deleted all of the files in the "Project Tests" folder, but was still had "Project Tests" listed under my targets. After deleting the "tests" target, the project built successfully.

Last Try :

1) Go to :- App Target 2) See the Identify ---and choose the Plist

Sarrusophone answered 7/6, 2016 at 9:45 Comment(2)
Hey lalit , is your previous machine is available from where you shifted your code.If it is available copy the plist from that code and remove the reference from here and paste it.Sarrusophone
You're welcome. If my answer helped you then vote me up.Sarrusophone
D
0

Error: The file “Info.plist” couldn’t be opened because there is no such file. This error occurs when you change the location of the Info.plist file. To fix this issue, follow the below steps.

  1. Go to the navigator pane.
  2. Click on error symbol located near to the project name.
  3. It will open the analyze screen.
  4. Click on Choose Info.plist file.
  5. Select Info.plist and click on choose button.
  6. Click on product option and clean the project.
Doubleton answered 26/3, 2018 at 19:54 Comment(0)
T
0

Or you can try

Maybe your plist has incorrect format, because of a conflict from git pull, so you should open your .plist file with text editor and resolve the conflict, and then reopen your project with Xcode, everything is OK.

Troy answered 25/10, 2018 at 6:48 Comment(0)
D
0
  1. Select Target
  2. Goto Build Phase
  3. Remove .Plist File from Copy Bundle Resources

enter image description here

Darnley answered 8/7, 2020 at 6:36 Comment(0)
C
-1

use these commands in terminal 1.pod deintegrate 2.pod clean 3.pod install

Cindicindie answered 2/1, 2019 at 12:11 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.