Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
)

Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -180,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}"),
Expand Down