Skip to content

Commit

Permalink
Fastfile: Fix bundle ID for FreeAPS-iAPSdev
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornoleh committed Dec 1, 2023
1 parent e00bf52 commit 3e93cb0
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ platform :ios do
type: "appstore",
git_basic_authorization: Base64.strict_encode64("#{GITHUB_REPOSITORY_OWNER}:#{GH_PAT}"),
app_identifier: [
"ru.artpancreas.#{TEAMID}.FreeAPS",
"ru.artpancreas.#{TEAMID}.FreeAPS.watchkitapp",
"ru.artpancreas.#{TEAMID}.FreeAPS.watchkitapp.watchkitextension",
"ru.artpancreas.#{TEAMID}.FreeAPS.LiveActivity"
"ru.artpancreas.#{TEAMID}.FreeAPS-iAPSdev",
"ru.artpancreas.#{TEAMID}.FreeAPS-iAPSdev.watchkitapp",
"ru.artpancreas.#{TEAMID}.FreeAPS-iAPSdev.watchkitapp.watchkitextension",
"ru.artpancreas.#{TEAMID}.FreeAPS-iAPSdev.LiveActivity"
]
)

Expand Down Expand Up @@ -100,7 +100,7 @@ platform :ios do
)
update_code_signing_settings(
path: "#{GITHUB_WORKSPACE}/FreeAPS.xcodeproj",
profile_name: mapping["ru.artpancreas.#{TEAMID}.FreeAPS.LiveActivity"],
profile_name: mapping["ru.artpancreas.#{TEAMID}.FreeAPS-iAPSdev.LiveActivity"],
code_sign_identity: "iPhone Distribution",
targets: ["LiveActivityExtension"]
)
Expand Down Expand Up @@ -170,7 +170,7 @@ platform :ios do
Spaceship::ConnectAPI::BundleIdCapability::Type::APP_GROUPS
])

configure_bundle_id("LiveActivityExtension", "ru.artpancreas.#{TEAMID}.FreeAPS.LiveActivity", [
configure_bundle_id("LiveActivityExtension", "ru.artpancreas.#{TEAMID}.FreeAPS-iAPSdev.LiveActivity", [
Spaceship::ConnectAPI::BundleIdCapability::Type::APP_GROUPS
])

Expand All @@ -192,10 +192,10 @@ platform :ios do
force: true,
git_basic_authorization: Base64.strict_encode64("#{GITHUB_REPOSITORY_OWNER}:#{GH_PAT}"),
app_identifier: [
"ru.artpancreas.#{TEAMID}.FreeAPS",
"ru.artpancreas.#{TEAMID}.FreeAPS.watchkitapp.watchkitextension",
"ru.artpancreas.#{TEAMID}.FreeAPS.watchkitapp",
"ru.artpancreas.#{TEAMID}.FreeAPS.LiveActivity"
"ru.artpancreas.#{TEAMID}.FreeAPS-iAPSdev",
"ru.artpancreas.#{TEAMID}.FreeAPS-iAPSdev.watchkitapp.watchkitextension",
"ru.artpancreas.#{TEAMID}.FreeAPS-iAPSdev.watchkitapp",
"ru.artpancreas.#{TEAMID}.FreeAPS-iAPSdev.LiveActivity"
]
)
end
Expand All @@ -215,7 +215,7 @@ platform :ios do
bundle_id = Spaceship::ConnectAPI::BundleId.find(identifier)
end

find_bundle_id("ru.artpancreas.#{TEAMID}.FreeAPS")
find_bundle_id("ru.artpancreas.#{TEAMID}.FreeAPS-iAPSdev")

match(
type: "appstore",
Expand Down

0 comments on commit 3e93cb0

Please sign in to comment.