From cc33a01bd0b8a0d92f3e50429f52db24134afd6c Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Thu, 23 Jul 2020 13:34:09 +0300 Subject: [PATCH] don't change xcconfig for AppStore configuration --- xcode/commonFastfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index 171fc0e..8564ade 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -168,7 +168,9 @@ private_lane :buildArchive do |options| configuration = options[:configuration] xcodeproj_path = options[:xcodeproj_path] - set_xcconfig_for_configuration_of_project(xcconfig_name, configuration, xcodeproj_path) + if configuration != "AppStore" # AppStore uses xcconfig choosen in Xcode + set_xcconfig_for_configuration_of_project(xcconfig_name, configuration, xcodeproj_path) + end gym( clean: true,