Skip to content

Commit e071b61

Browse files
Claudeclaude
andcommitted
fix(ios): use build setting variables for version in Info.plist
The literal values in Info.plist were not being overridden by the MARKETING_VERSION and CURRENT_PROJECT_VERSION xcodebuild flags. Use $(MARKETING_VERSION) and $(CURRENT_PROJECT_VERSION) variable references so CI can set the version from the git tag. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2181101 commit e071b61

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/ios/FareBot/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>$(MARKETING_VERSION)</string>
1919
<key>CFBundleVersion</key>
20-
<string>1</string>
20+
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>LSRequiresIPhoneOS</key>
2222
<true/>
2323
<key>LSSupportsOpeningDocumentsInPlace</key>

0 commit comments

Comments
 (0)