We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dc75ac commit 1e0263fCopy full SHA for 1e0263f
apple/internal/resource_actions/actool.bzl
@@ -432,6 +432,11 @@ def _validate_asset_files_and_generate_args(
432
)
433
args.extend(_args_for_launch_images(launch_image_files = launch_image_files))
434
435
+ # Add arguments for watch extension complication, if there is one.
436
+ complication_files = [f for f in asset_files if ".complicationset/" in f.path]
437
+ if product_type == apple_product_type.watch2_extension and complication_files:
438
+ args += ["--complication", "Complication"]
439
+
440
return args
441
442
def _alticonstool_args(
0 commit comments