Skip to content

Commit ea72dc5

Browse files
committed
fix: properly disable all unused services
1 parent 0e51616 commit ea72dc5

1 file changed

Lines changed: 19 additions & 3 deletions

File tree

sign.py

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,24 @@ def fastlane_register_app(account_name: str, account_pass: str, bundle_id: str,
402402
env=my_env,
403403
)
404404

405+
supported_services = [
406+
"--push-notification",
407+
"--health-kit",
408+
"--home-kit",
409+
"--wireless-accessory",
410+
"--inter-app-audio",
411+
"--extended-virtual-address-space",
412+
"--multipath",
413+
"--network-extension",
414+
"--personal-vpn",
415+
"--access-wifi",
416+
"--nfc-tag-reading",
417+
"--siri-kit",
418+
"--associated-domains",
419+
"--icloud",
420+
"--app-group",
421+
]
422+
405423
# clear any previous services
406424
run_process(
407425
"fastlane",
@@ -410,9 +428,7 @@ def fastlane_register_app(account_name: str, account_pass: str, bundle_id: str,
410428
"--skip_itc",
411429
"--app_identifier",
412430
bundle_id,
413-
"--app-group",
414-
"--push-notification",
415-
"--icloud",
431+
*supported_services,
416432
env=my_env,
417433
)
418434

0 commit comments

Comments
 (0)