From 4ac81d622344e0adbc5797fbce14ae6759b27d51 Mon Sep 17 00:00:00 2001 From: alexandrev-tibco Date: Thu, 30 Apr 2026 08:36:31 +0200 Subject: [PATCH] 1.0.6: Fix widget version, bump to build 41, fix Fastfile signing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - MealMoodWidget CFBundleShortVersionString: 1.0.3 → 1.0.6 (fixes ITMS-90473) - App + Widget build number: 40 → 41 (App Store release build) - Fastfile: add manageAppVersionAndBuildNumber: false to EXPORT_OPTIONS to prevent xcodebuild from requiring App Store Connect during export Co-Authored-By: Claude Sonnet 4.6 --- MealMood/Resources/Info.plist | 2 +- MealMoodWidget/Info.plist | 4 ++-- fastlane/Fastfile | 14 ++++++++++++-- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/MealMood/Resources/Info.plist b/MealMood/Resources/Info.plist index f006633..4c7b410 100644 --- a/MealMood/Resources/Info.plist +++ b/MealMood/Resources/Info.plist @@ -17,7 +17,7 @@ CFBundleShortVersionString 1.0.6 CFBundleVersion - 32 + 41 GADApplicationIdentifier ca-app-pub-1549720748100858~9985112590 LSRequiresIPhoneOS diff --git a/MealMoodWidget/Info.plist b/MealMoodWidget/Info.plist index 7bef3c8..f43ee24 100644 --- a/MealMoodWidget/Info.plist +++ b/MealMoodWidget/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 1.0.3 + 1.0.6 CFBundleVersion - 21 + 41 NSExtension NSExtensionPointIdentifier diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 550deb9..8ffc8c0 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -6,6 +6,16 @@ default_platform(:ios) # export FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD=$(pass show apple/mealmood/app-specific-password-fastlane) platform :ios do + EXPORT_OPTIONS = { + method: "app-store", + signingStyle: "manual", + manageAppVersionAndBuildNumber: false, + provisioningProfiles: { + "com.alexandrevazquez.mealmood" => "com.alexandrevazquez.mealmood AppStore", + "com.alexandrevazquez.mealmood.widget" => "com.alexandrevazquez.mealmood.widget AppStore" + } + } + desc "Push a new beta build to TestFlight" lane :beta do increment_build_number(xcodeproj: "MealMood.xcodeproj") @@ -13,7 +23,7 @@ platform :ios do scheme: "MealMood", export_method: "app-store", sdk: "iphoneos26.4", - export_xcargs: "-allowProvisioningUpdates" + export_options: EXPORT_OPTIONS ) upload_to_testflight(skip_waiting_for_build_processing: true) end @@ -24,7 +34,7 @@ platform :ios do build_app( scheme: "MealMood", sdk: "iphoneos26.4", - export_xcargs: "-allowProvisioningUpdates" + export_options: EXPORT_OPTIONS ) upload_to_app_store(force: true) end