Created
March 29, 2017 05:11
-
-
Save dilmerv/e44ce4f2f1c2c8ddab514dcdf9d351f6 to your computer and use it in GitHub Desktop.
MAC_Build_Plist_Example.plist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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>CFBundleDevelopmentRegion</key> | |
| <string>English</string> | |
| <key>CFBundleExecutable</key> | |
| <string>[YourGameName]</string> | |
| <key>CFBundleGetInfoString</key> | |
| <string>Your Game Name (c) 2017 Dilmer Games. All rights reserved.</string> | |
| <key>CFBundleIconFile</key> | |
| <string>PlayerIcon.icns</string> | |
| <key>CFBundleIdentifier</key> | |
| <string>com.yoursite.yourapp</string> | |
| <key>CFBundleInfoDictionaryVersion</key> | |
| <string>6.0</string> | |
| <key>CFBundleName</key> | |
| <string>[YourGameName]</string> | |
| <key>CFBundlePackageType</key> | |
| <string>APPL</string> | |
| <key>CFBundleShortVersionString</key> | |
| <string>2.0.6</string> | |
| <key>LSApplicationCategoryType</key> | |
| <string>public.app-category.games</string> | |
| <key>CFBundleSignature</key> | |
| <string>????</string> | |
| <key>CFBundleVersion</key> | |
| <string>2.0.6</string> | |
| <key>NSMainNibFile</key> | |
| <string>MainMenu</string> | |
| <key>NSPrincipalClass</key> | |
| <string>PlayerApplication</string> | |
| <key>UnityBuildNumber</key> | |
| <string>03f34082a9c0</string> | |
| </dict> | |
| </plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment