|
@@ -57,7 +57,8 @@ platform :ios do
|
|
|
app_identifier: [
|
|
app_identifier: [
|
|
|
"ru.artpancreas.#{TEAMID}.FreeAPS",
|
|
"ru.artpancreas.#{TEAMID}.FreeAPS",
|
|
|
"ru.artpancreas.#{TEAMID}.FreeAPS.watchkitapp",
|
|
"ru.artpancreas.#{TEAMID}.FreeAPS.watchkitapp",
|
|
|
- "ru.artpancreas.#{TEAMID}.FreeAPS.watchkitapp.watchkitextension"
|
|
|
|
|
|
|
+ "ru.artpancreas.#{TEAMID}.FreeAPS.watchkitapp.watchkitextension",
|
|
|
|
|
+ "ru.artpancreas.#{TEAMID}.FreeAPS.LiveActivity"
|
|
|
]
|
|
]
|
|
|
)
|
|
)
|
|
|
|
|
|
|
@@ -97,6 +98,12 @@ platform :ios do
|
|
|
code_sign_identity: "iPhone Distribution",
|
|
code_sign_identity: "iPhone Distribution",
|
|
|
targets: ["FreeAPSWatch"]
|
|
targets: ["FreeAPSWatch"]
|
|
|
)
|
|
)
|
|
|
|
|
+ update_code_signing_settings(
|
|
|
|
|
+ path: "#{GITHUB_WORKSPACE}/FreeAPS.xcodeproj",
|
|
|
|
|
+ profile_name: mapping["ru.artpancreas.#{TEAMID}.FreeAPS.LiveActivity"],
|
|
|
|
|
+ code_sign_identity: "iPhone Distribution",
|
|
|
|
|
+ targets: ["LiveActivityExtension"]
|
|
|
|
|
+ )
|
|
|
|
|
|
|
|
gym(
|
|
gym(
|
|
|
export_method: "app-store",
|
|
export_method: "app-store",
|
|
@@ -162,6 +169,10 @@ platform :ios do
|
|
|
configure_bundle_id("FreeAPSWatch", "ru.artpancreas.#{TEAMID}.FreeAPS.watchkitapp", [
|
|
configure_bundle_id("FreeAPSWatch", "ru.artpancreas.#{TEAMID}.FreeAPS.watchkitapp", [
|
|
|
Spaceship::ConnectAPI::BundleIdCapability::Type::APP_GROUPS
|
|
Spaceship::ConnectAPI::BundleIdCapability::Type::APP_GROUPS
|
|
|
])
|
|
])
|
|
|
|
|
+
|
|
|
|
|
+ configure_bundle_id("LiveActivityExtension", "ru.artpancreas.#{TEAMID}.FreeAPS.LiveActivity", [
|
|
|
|
|
+ Spaceship::ConnectAPI::BundleIdCapability::Type::APP_GROUPS
|
|
|
|
|
+ ])
|
|
|
|
|
|
|
|
end
|
|
end
|
|
|
|
|
|
|
@@ -184,6 +195,7 @@ platform :ios do
|
|
|
"ru.artpancreas.#{TEAMID}.FreeAPS",
|
|
"ru.artpancreas.#{TEAMID}.FreeAPS",
|
|
|
"ru.artpancreas.#{TEAMID}.FreeAPS.watchkitapp.watchkitextension",
|
|
"ru.artpancreas.#{TEAMID}.FreeAPS.watchkitapp.watchkitextension",
|
|
|
"ru.artpancreas.#{TEAMID}.FreeAPS.watchkitapp",
|
|
"ru.artpancreas.#{TEAMID}.FreeAPS.watchkitapp",
|
|
|
|
|
+ "ru.artpancreas.#{TEAMID}.FreeAPS.LiveActivity"
|
|
|
]
|
|
]
|
|
|
)
|
|
)
|
|
|
end
|
|
end
|