Info.plist (1196B)
1 <?xml version="1.0" encoding="UTF-8"?> 2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3 <plist version="1.0"> 4 <dict> 5 <key>CFBundleDevelopmentRegion</key> 6 <string>en</string> 7 <key>CFBundleDisplayName</key> 8 <string>BevyGame</string> <!-- ToDo: this should be the same as your OSX app name in the release flow --> 9 <key>CFBundleExecutable</key> 10 <string>bevy_game</string> <!-- ToDo: this should be the same as your executable name in the release flow --> 11 <key>CFBundleIconFile</key> 12 <string>AppIcon.icns</string> 13 <key>CFBundleIdentifier</key> 14 <string>your.domain.bevy-game</string> <!-- ToDo --> 15 <key>CFBundleInfoDictionaryVersion</key> 16 <string>6.0</string> 17 <key>CFBundleName</key> 18 <string>Bevy Game</string> <!-- ToDo --> 19 <key>CFBundlePackageType</key> 20 <string>APPL</string> 21 <key>CFBundleShortVersionString</key> 22 <!-- Version --> 23 <string>0.1.0</string> 24 <key>CFBundleSupportedPlatforms</key> 25 <array> 26 <string>MacOSX</string> 27 </array> 28 </dict> 29 </plist>