From 5d03e0e14a34aadbfa96b61be9b7344e9652e433 Mon Sep 17 00:00:00 2001 From: marionbarker Date: Sat, 25 Apr 2026 12:06:27 -0700 Subject: [PATCH 1/2] add App Group capability to Fastfile --- fastlane/Fastfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 0871e7414..f450ecb22 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -56,7 +56,7 @@ platform :ios do git_basic_authorization: Base64.strict_encode64("#{GITHUB_REPOSITORY_OWNER}:#{GH_PAT}"), app_identifier: [ "com.#{TEAMID}.LoopFollow", - "com.#{TEAMID}.LoopFollow.LoopFollowLAExtension" + "com.#{TEAMID}.LoopFollow.LoopFollowLAExtension" ] ) @@ -139,10 +139,13 @@ platform :ios do end configure_bundle_id("LoopFollow", "com.#{TEAMID}.LoopFollow", [ + Spaceship::ConnectAPI::BundleIdCapability::Type::APP_GROUPS, Spaceship::ConnectAPI::BundleIdCapability::Type::PUSH_NOTIFICATIONS ]) - configure_bundle_id("LoopFollow Live Activity Extension", "com.#{TEAMID}.LoopFollow.LoopFollowLAExtension", []) + configure_bundle_id("LoopFollow Live Activity Extension", "com.#{TEAMID}.LoopFollow.LoopFollowLAExtension", [ + Spaceship::ConnectAPI::BundleIdCapability::Type::APP_GROUPS + ]) end From d5a6a36dde2847b6651d072fff10d4005da97590 Mon Sep 17 00:00:00 2001 From: marionbarker Date: Sat, 25 Apr 2026 13:13:12 -0700 Subject: [PATCH 2/2] remove unused lines in Fastfile --- fastlane/Fastfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index f450ecb22..120b9f061 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -183,12 +183,6 @@ platform :ios do key_content: "#{FASTLANE_KEY}" ) - def find_bundle_id(identifier) - bundle_id = Spaceship::ConnectAPI::BundleId.find(identifier) - end - - find_bundle_id("com.#{TEAMID}.loopkit.LoopFollow") - match( type: "appstore", git_basic_authorization: Base64.strict_encode64("#{GITHUB_REPOSITORY_OWNER}:#{GH_PAT}"),