1.0.6: Fix widget version, bump to build 41, fix Fastfile signing
- 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 <noreply@anthropic.com>
This commit is contained in:
@@ -17,7 +17,7 @@
|
|||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.0.6</string>
|
<string>1.0.6</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>32</string>
|
<string>41</string>
|
||||||
<key>GADApplicationIdentifier</key>
|
<key>GADApplicationIdentifier</key>
|
||||||
<string>ca-app-pub-1549720748100858~9985112590</string>
|
<string>ca-app-pub-1549720748100858~9985112590</string>
|
||||||
<key>LSRequiresIPhoneOS</key>
|
<key>LSRequiresIPhoneOS</key>
|
||||||
|
|||||||
@@ -15,9 +15,9 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>XPC!</string>
|
<string>XPC!</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.0.3</string>
|
<string>1.0.6</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>21</string>
|
<string>41</string>
|
||||||
<key>NSExtension</key>
|
<key>NSExtension</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>NSExtensionPointIdentifier</key>
|
<key>NSExtensionPointIdentifier</key>
|
||||||
|
|||||||
+12
-2
@@ -6,6 +6,16 @@ default_platform(:ios)
|
|||||||
# export FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD=$(pass show apple/mealmood/app-specific-password-fastlane)
|
# export FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD=$(pass show apple/mealmood/app-specific-password-fastlane)
|
||||||
|
|
||||||
platform :ios do
|
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"
|
desc "Push a new beta build to TestFlight"
|
||||||
lane :beta do
|
lane :beta do
|
||||||
increment_build_number(xcodeproj: "MealMood.xcodeproj")
|
increment_build_number(xcodeproj: "MealMood.xcodeproj")
|
||||||
@@ -13,7 +23,7 @@ platform :ios do
|
|||||||
scheme: "MealMood",
|
scheme: "MealMood",
|
||||||
export_method: "app-store",
|
export_method: "app-store",
|
||||||
sdk: "iphoneos26.4",
|
sdk: "iphoneos26.4",
|
||||||
export_xcargs: "-allowProvisioningUpdates"
|
export_options: EXPORT_OPTIONS
|
||||||
)
|
)
|
||||||
upload_to_testflight(skip_waiting_for_build_processing: true)
|
upload_to_testflight(skip_waiting_for_build_processing: true)
|
||||||
end
|
end
|
||||||
@@ -24,7 +34,7 @@ platform :ios do
|
|||||||
build_app(
|
build_app(
|
||||||
scheme: "MealMood",
|
scheme: "MealMood",
|
||||||
sdk: "iphoneos26.4",
|
sdk: "iphoneos26.4",
|
||||||
export_xcargs: "-allowProvisioningUpdates"
|
export_options: EXPORT_OPTIONS
|
||||||
)
|
)
|
||||||
upload_to_app_store(force: true)
|
upload_to_app_store(force: true)
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user