From c4cf6a0704b2fe03c8dde9993c58343a0a5c4cd2 Mon Sep 17 00:00:00 2001 From: Nikita Mikryukov <97m.nik@gmail.com> Date: Wed, 12 Nov 2025 14:01:25 +0300 Subject: [PATCH] added configuration adhoc api key --- xcode/commonFastfile | 2 +- xcode/fastlane/touchlane/lib/touchlane/configuration_type.rb | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index 9ebb1b3..1824be7 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -266,7 +266,7 @@ def fill_up_options_using_configuration_type(options, configuration_type, keycha # Check whether configuration type is required to configure one of api key parameters or not - if configuration_type.is_app_store || configuration_type.is_development + if configuration_type.is_app_store || configuration_type.is_development || configuration_type.is_adhoc # Check whether API key JSON file exists or not diff --git a/xcode/fastlane/touchlane/lib/touchlane/configuration_type.rb b/xcode/fastlane/touchlane/lib/touchlane/configuration_type.rb index d2d22f0..45add3d 100644 --- a/xcode/fastlane/touchlane/lib/touchlane/configuration_type.rb +++ b/xcode/fastlane/touchlane/lib/touchlane/configuration_type.rb @@ -18,6 +18,7 @@ module Touchlane @is_app_store = type == APP_STORE @is_development = type == DEVELOPMENT + @is_adhoc = type == ADHOC case type when DEVELOPMENT @@ -43,7 +44,7 @@ module Touchlane private_class_method :new - attr_reader :export_method, :type, :configuration, :is_app_store, :is_development, :prefix + attr_reader :export_method, :type, :configuration, :is_app_store, :is_development, :is_adhoc, :prefix def self.from_lane_name(lane_name) case