UDN
Search public documentation:

UDKInfoPListAppleMac
日本語訳
中国翻译
한국어

Interested in the Unreal Engine?
Visit the Unreal Technology site.

Looking for jobs and company info?
Check out the Epic games site.

Questions about support via UDN?
Contact the UDN Staff

UE3 Home > Mac Platform > Customizing Info.plist for Mac

Customizing Info.plist for Mac


Overview


Info.plist is embedded in your application package and controls a number of things about your application. The display name shown in the Finder is listed here, as well as the bundle identifier which uniquely identifies the application.

For more detailed information, see: Apple's documentation on Info.plist.

Bundle Name (CFBundleName)


The bundle name (CFBundleName) is a name for the bundle, we also use it as executable name. It's shown below the app's icon in Finder as well as in app's menu bar, so should not be too long, ideally not longer than 16 characters. Also, it should not contain slash (/) nor colon (:) characters.

Bundle Identifier (CFBundleIdentifier)


The CFBundleIdentifier identifies the application bundle. It should only contain characters in the following sets: alphanumeric (A-Z, a-z, 0-9), hyphen (-), and period (.).

If you intend to submit your UDK application to the Mac App Store, what you enter here must match the identifier you set in Developer Certificate Utility when creating App ID.

Advanced changes


If you need to modify or add a key to Info.plist that isn't exposed by this dialog, the overrides file can be edited by hand. It is a UTF-8 encoded XML document. Any keys in this file will override existing settings, so do not add a key to this file unless you know you need to modify it and understand the risks.