
In xCode:
- Click on the project (name)
- Click "Build Settings"
- Look for Packaging group
- Inside packaging group you will find your Info.plist file
Full Answer
Where can I find the plist file in Xcode?
The Info.plist file is by default located in the root folder of your application's bundle, it's derived from the {ProjectName}-Info.plist file in the Xcode project. By default it's listed in a group called Supporting Files. Yes. The Xcode editor supports the plist file format.
What is a plist file format?
A plist file format is one of binary XML, plain text XML, or even plain text JSON. The plist file that was posted in the question is the binary XML format. One way to produce plain text from the binary file is as follows.
What are info plist keys and why are they important?
Developers of Mac apps might include these keys during testing or to modify certain aspects of your app’s behavior. An iOS app communicates a lot of information to the system using Info.plist keys.

How do I get to Info plist?
All you have to do is click on the blue project icon -on top of the left- and go to the “Build Settings” tab, search “Info. plist” and choose “Info. plist File” section.
What happened Info plist?
plist is gone. It's not a bug. According to the Xcode 13 release notes: “Projects created from several templates no longer require configuration files such as entitlements and Info.
What is Info plist in iOS?
The Info. plist file contains critical information about the configuration of an iOS mobile app—such as iOS versions that are supported and device compatibility—which the operating system uses to interact with the app. This file is automatically created when the mobile app is compiled.
Where are plist stored in iOS?
bundle directoryplist . This name of this file is case sensitive and must have an initial capital letter I . In iOS apps, this file resides in the top-level of the bundle directory. In macOS bundles, this file resides in the bundle's Contents directory.
How do I create a plist file?
To create a plist file, it just as simple as creating a new class. Click menu File > New > File... ( ⌘ - CMD + N ).)
How do I edit info plist on Mac?
plist file. If you need to edit these items, Control-click (or right-click) Info. plist in the sidebar and select Edit Manually. This allows you to add or edit items in raw XML format.
What is an Apple plist?
plist (Property List) is a flexible and convenient format for storing application data. It was originally defined by Apple, for use in iPhone devices and later spread to other applications. Since plists are actually XML files, you can use a simple text editor to translate them.
What does Info plist contain?
Info. plist is key/value persistence storage( property list ) which is used by system and user. It contains user-friendly text in XML format.
How do I read a plist file on a Mac?
plist - The primary property list for Mac OS X applications, located in the /Contents/ directory of an . APP bundle. To view this file, right-click an application file, select "Show Package Contents," and open the Contents folder.
How do I find plist on Mac?
Open the plist file /Library/Preferences/com. apple. dock. plist in Xcode and use the editor to view and change values.
How do I open a plist file on my Iphone?
If you cannot open your PLIST file correctly, try to right-click or long-press the file. Then click "Open with" and choose an application. You can also display a PLIST file directly in the browser: Just drag the file onto this browser window and drop it.
Where does Mac store plist files?
Here you can see a list of plist files that are related to macOS. They are saved in the Preferences> SystemConfiguration folder.
How do I unlock info plist on Mac?
Using The Finder Select the plist file in the Finder and doing File > Get Info. At the bottom of the file info window you'll see a section called Sharing & Permissions. You want to make sure you're in that list and that you have Read & Write level access to the file.
How do I delete a .plist file on a Mac?
Make sure you include the ~ at the beginning.Next, you should see a list of . plist files in this folder. Like this:Once you have found your plist files. CNTRL + Click (or right click) and select Move to Trash to delete them. ... Empty the trash. Restart your computer using Apple Menu -> Restart.Start the program again.
Where are the plist files on a Mac?
Property list files can be found in the directories /Library/Preferences and ~/Library/Preferences . The file names take the form of a reversed domain name, an application name, and a . plist file extension. Examples are: com.
What is a .plist file?
The term “plist” is actually short for Info. plist or Information property list file. The plist is a special file that configures your mobile app, telling it how to run. Every iOS app uses an Info.
Read any plist file
The following is an example of how to retrieving values from the Info.plist using the method mentioned in How to read a Property List (plist) into the code.
Read value from Info.plist
Since each bundle must contain an Info.plist file describing the bundle and the format of the plist is predefine and known by the system. Apple does us a favor and group up the file locating and parsing logic into one simple method, object (forInfoDictionaryKey:).
Caveat
There is one behavior different between using object (forInfoDictionaryKey:) and PropertyListSerialization, that is the value returned from object (forInfoDictionaryKey:) will be localized if available.
Extension
You can write an extension to Bundle to make it more readable like this.
Option 2: Get Info.plist Back, Completely
Sometimes, you just have to revert to an older version. Here’s what an Apple engineer told me at WWDC21.
Conclusion
Whether you use Custom iOS Target Properties along with Xcode’s semi-synced Info.plist, or just the classic Info.plist, your app won’t change. Depending on whether you want less work or more control, both options are fine — the result will be the same. Thanks for reading.
