Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 3329b2d

Browse files
committed
Fix error when deploying to iOS 13.x simulator
As of Xcode 11, the app plist must include both keys "CFBundleVersion" and "CFBundleShortVersionString", otherwise it cannot be installed.
1 parent bc04612 commit 3329b2d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

engine/rsrc/mobile-template.plist

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
<key>CFBundleSignature</key>
1616
<string>????</string>
1717
<key>CFBundleVersion</key>
18-
<string>1.0</string>
18+
<string>${BUNDLE_BUILD}</string>
19+
<key>CFBundleShortVersionString</key>
20+
<string>${BUNDLE_VERSION}</string>
1921
${URL_TYPES}
2022
${BUNDLE_ICONS}
2123
${DISABLE_ATS}

0 commit comments

Comments
 (0)