From 641afa42f3634600d46bed3b955757383d67d333 Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Fri, 5 Apr 2019 00:24:09 +0300 Subject: [PATCH] add ability to pass compileBitcode option --- xcode/commonFastfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index 2908c76..a4c69a9 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -102,7 +102,8 @@ private_lane :buildConfiguration do |options| end if options[:uploadToAppStore] - options[:compileBitcode] = true + options[:compileBitcode] = options[:compileBitcode] || true + options[:include_symbols] = options[:include_symbols] || true options = options.merge(make_options_for_lane_name("AppStore")) options = merge_options_with_config_file(options) @@ -129,7 +130,7 @@ private_lane :buildArchive do |options| export_method: options[:method], export_options: exportOptions, skip_package_ipa: options[:skip_package_ipa], - include_symbols: options[:compileBitcode] || false, + include_symbols: options[:include_symbols] || false, include_bitcode: options[:compileBitcode] || false, ) end