Skip to content

Commit e36d1d5

Browse files
committed
fix: use build variables for version in Info.plist
- Replace hardcoded version values with build variables - CFBundleShortVersionString now uses $(MARKETING_VERSION) - CFBundleVersion now uses $(CURRENT_PROJECT_VERSION) - This ensures versions are always synchronized with project settings - Fixes App Store submission errors ITMS-90186 and ITMS-90062
1 parent 3215244 commit e36d1d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

V2er/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.1</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>UIApplicationSceneManifest</key>

0 commit comments

Comments
 (0)