From 5dae856fb29baa0f705aa7e0e425e61308e34097 Mon Sep 17 00:00:00 2001 From: Vova Ignatov Date: Mon, 24 Nov 2025 13:17:10 +0000 Subject: [PATCH] IOS-5508 Fix TestFlight upload bundle ID selection in Xcode 26 --- fastlane/FastfileDeploy | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/fastlane/FastfileDeploy b/fastlane/FastfileDeploy index 96577f11d5..c1efbd5309 100644 --- a/fastlane/FastfileDeploy +++ b/fastlane/FastfileDeploy @@ -20,12 +20,14 @@ platform :ios do ENV["APP_CONF_DEVELOP"] => { tag_prefix: "dev", add_badge: true, - app_info: "Debug" + app_info: "Debug", + bundle_id: "io.anytype.app.dev" }, ENV["APP_CONF_RELEASE_ANYTYPE"] => { tag_prefix: "release-anytype", add_badge: false, - app_info: "Release Anytype" + app_info: "Release Anytype", + bundle_id: "io.anytype.app" } } @@ -147,6 +149,9 @@ platform :ios do end end + bundle_id = settings[:bundle_id] + ENV["DELIVER_ALTOOL_ADDITIONAL_UPLOAD_PARAMETERS"] = "--apple-id #{bundle_id} --use-old-altool" + upload_to_testflight(skip_waiting_for_build_processing: true) github_message = "Anytype #{appInfo} Version: **#{version}(#{build_number})** :gem::gem::gem:"