Last active
July 16, 2023 03:43
-
-
Save robertfsegal/f846b38066f4b0d3f439035012b7e886 to your computer and use it in GitHub Desktop.
Unreal 5.2.1 - Mac - info.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>NSAppTransportSecurity</key> | |
| <dict> | |
| <key>NSAllowsArbitraryLoads</key> | |
| <true/> | |
| </dict> | |
| <key>CFBundleDevelopmentRegion</key> | |
| <string>English</string> | |
| <key>CFBundleExecutable</key> | |
| <string>${EXECUTABLE_NAME}</string> | |
| <key>CFBundleIconFile</key> | |
| <string>${ICON_NAME}</string> | |
| <key>CFBundleIdentifier</key> | |
| <string>${APP_NAME}</string> | |
| <key>CFBundleInfoDictionaryVersion</key> | |
| <string>6.0</string> | |
| <key>CFBundleName</key> | |
| <string>${EXECUTABLE_NAME}</string> | |
| <key>CFBundlePackageType</key> | |
| <string>APPL</string> | |
| <key>CFBundleShortVersionString</key> | |
| <string>${BUNDLE_VERSION}</string> | |
| <key>CFBundleSignature</key> | |
| <string>????</string> | |
| <key>CFBundleVersion</key> | |
| <string>${BUNDLE_VERSION}</string> | |
| <key>LSMinimumSystemVersion</key> | |
| <string>${MACOSX_DEPLOYMENT_TARGET}</string> | |
| <key>NSPrincipalClass</key> | |
| <string>NSApplication</string> | |
| <key>NSHighResolutionCapable</key> | |
| <false/> | |
| <key>NSHighResolutionMagnifyAllowed</key> | |
| <false/> | |
| <key>NSMicrophoneUsageDescription</key> | |
| <string>UE needs permission to use the microphone in order to use voice chat.</string> | |
| </dict> | |
| </plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment