diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-01-10 08:56:45 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-01-10 08:56:45 +0200 |
commit | 8a360bc9a3a6e9eaf9380bd40cc8096cacfc1d9e (patch) | |
tree | 27ac468ad91de708de42c5b165ac4592bdbcb442 /misc/dist/ios_xcode/godot_ios | |
parent | d3fc9d9e416560d228a7914a82902118ce911a4d (diff) |
[iOS] Move name and version information to the Xcode project.
Diffstat (limited to 'misc/dist/ios_xcode/godot_ios')
-rw-r--r-- | misc/dist/ios_xcode/godot_ios/godot_ios-Info.plist | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/misc/dist/ios_xcode/godot_ios/godot_ios-Info.plist b/misc/dist/ios_xcode/godot_ios/godot_ios-Info.plist index b88dfae5b2..ee5f1d35ae 100644 --- a/misc/dist/ios_xcode/godot_ios/godot_ios-Info.plist +++ b/misc/dist/ios_xcode/godot_ios/godot_ios-Info.plist @@ -5,9 +5,9 @@ <key>CFBundleDevelopmentRegion</key> <string>en</string> <key>CFBundleDisplayName</key> - <string>$name</string> + <string>$(INFOPLIST_KEY_CFBundleDisplayName)</string> <key>CFBundleExecutable</key> - <string>$binary</string> + <string>$(EXECUTABLE_NAME)</string> <key>CFBundleIcons</key> <dict/> <key>CFBundleIcons~ipad</key> @@ -17,15 +17,15 @@ <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> - <string>$name</string> + <string>$(PRODUCT_NAME)</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> - <string>$short_version</string> + <string>$(MARKETING_VERSION)</string> <key>CFBundleSignature</key> <string>$signature</string> <key>CFBundleVersion</key> - <string>$version</string> + <string>$(CURRENT_PROJECT_VERSION)</string> <key>ITSAppUsesNonExemptEncryption</key> <false /> <key>LSRequiresIPhoneOS</key> |