This is a real, minimum minimum:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleExecutable</key>
<string>ExecutableFileName</string>
<key>CFBundleIconFile</key>
<string>AppIcon</string>
</dict>
</plist>
It is also recommended that you enable the key CFBundleIdentifier. In this way, the system can identify your application. I really recommend you turn it on.
You can find additional keys in the Link to the list of information properties .
user142019
source
share