From e36d1d505e03091c527d9dbf7bd18209d8b3131c Mon Sep 17 00:00:00 2001 From: Gray Zhang Date: Sun, 14 Sep 2025 19:58:57 +0800 Subject: [PATCH] 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 --- V2er/Info.plist | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/V2er/Info.plist b/V2er/Info.plist index df25606..3e28da9 100644 --- a/V2er/Info.plist +++ b/V2er/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 1.0.1 + $(MARKETING_VERSION) CFBundleVersion - 1 + $(CURRENT_PROJECT_VERSION) LSRequiresIPhoneOS UIApplicationSceneManifest