From a17fe640a58c7b79f4c2932c2fe316cb07e34c41 Mon Sep 17 00:00:00 2001 From: John Szumski <784312+jszumski@users.noreply.github.com> Date: Fri, 2 Jun 2023 17:23:34 -0400 Subject: [PATCH] Fix issue where xcconfig values for nonplist settings (e.g., Swift compiler flags) were not applied for ios_application (#729) --- rules/app.bzl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rules/app.bzl b/rules/app.bzl index 43f5b5101..ea0f8b4d8 100644 --- a/rules/app.bzl +++ b/rules/app.bzl @@ -82,6 +82,8 @@ def ios_application( namespace_is_module_name = False, platforms = {"ios": application_kwargs.get("minimum_os_version")}, testonly = testonly, + xcconfig = xcconfig, + xcconfig_by_build_setting = xcconfig_by_build_setting, **kwargs )