Info.plist not in correct format

前端 未结 4 1713
北海茫月
北海茫月 2021-02-20 12:36

I was working through my iOS Xcode project just fine, and then all of a sudden when I tried to run it, I started getting the error below:

error: couldn\'t parse         


        
相关标签:
4条回答
  • 2021-02-20 12:54

    I encountered the same error. Took quite a while to figure it out. Here's how I did it:

    • Go to your terminal
    • Navigate to the location where the plist file is located e.g cd /user/desktop/app/Runner/info.plist
    • Then use the plutil command like so plutil info.plist

    This will show you where the error is and you can go about correcting it. I hope that helps.

    0 讨论(0)
  • 2021-02-20 13:01

    A plist file is an XML document in a tightly specified format; both XML and the Property List structure have very strict rules. You can easily mess things up by accident if you attempt to edit the info.plist manually (i.e., as text) by saying Open As > Source Code:

    enter image description here

    You are unlikely to get this format right. Thus, you should always edit the info.plist with Open As > Property List:

    enter image description here

    This allows the property list editor to generate the XML for you, and it is unlikely to make a mistake in the resulting XML structure. Of course I suppose you could still mess up the value of something...

    0 讨论(0)
  • 2021-02-20 13:15

    I had a merge conflict and didn't realize it so there were git annotations in the file. I couldn't open it as a property list but I opened as source code and fixed the issue that way.

    0 讨论(0)
  • 2021-02-20 13:18

    I had this same issue and it was because plist files do not like &. You have to use & instead of an ampersand.

    0 讨论(0)
提交回复
热议问题