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