From b2886a815826486249cbf2562b3bfa1e421ae744 Mon Sep 17 00:00:00 2001 From: Alexey Gerasimov Date: Wed, 25 Oct 2017 21:19:00 +0300 Subject: [PATCH 1/2] Disabled bitcode compilation --- xcode/commonFastfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index 0dd5510..8441e9f 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -52,6 +52,7 @@ private_lane :buildConfiguration do |options| configuration: configuration, export_method: method, export_options: exportOptions, - skip_package_ipa: !uploadToFabric + skip_package_ipa: !uploadToFabric, + include_bitcode: false ) end From a5659834bbeda76677eb12cd2bcdc6d634e11152 Mon Sep 17 00:00:00 2001 From: Alexey Gerasimov Date: Thu, 26 Oct 2017 12:01:50 +0300 Subject: [PATCH 2/2] Bitcode disabled via export options respecting optional parameter --- xcode/commonFastfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index 8441e9f..8219704 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -42,6 +42,7 @@ private_lane :buildConfiguration do |options| uploadToFabric = options[:uploadToFabric] icloudEnvironment = options[:iCloudContainerEnvironment] || "" exportOptions = icloudEnvironment.to_s.empty? ? {} : {iCloudContainerEnvironment: icloudEnvironment} + exportOptions[:compileBitcode] = options[:compileBitcode] || false gym( clean: true, @@ -52,7 +53,6 @@ private_lane :buildConfiguration do |options| configuration: configuration, export_method: method, export_options: exportOptions, - skip_package_ipa: !uploadToFabric, - include_bitcode: false + skip_package_ipa: !uploadToFabric ) end