开发者

Create an application plist

What would a Mac OS X Application Info.plist file look like? I only need the bare minimum, so that I have:

Thanks!


This is the real, bare 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 recommended to include a CFBundleIdentifier key also. This way the system can identify your application. I really recommend you include it.


You can find more keys in the Information Property List Key Reference.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜