fastlane/lib/fastlane/actions/testfairy.rb in fastlane-2.0.4 vs fastlane/lib/fastlane/actions/testfairy.rb in fastlane-2.0.5

- old
+ new

@@ -134,11 +134,11 @@ verify_block: proc do |value| UI.user_error!("No API key for TestFairy given, pass using `api_key: 'key'`") unless value.to_s.length > 0 end), FastlaneCore::ConfigItem.new(key: :ipa, env_name: 'TESTFAIRY_IPA_PATH', - description: 'Path to your IPA file. Optional if you use the _gym_ or _xcodebuild_ action', + description: 'Path to your IPA file for iOS or APK for Android', default_value: Actions.lane_context[SharedValues::IPA_OUTPUT_PATH], verify_block: proc do |value| UI.user_error!("Couldn't find ipa file at path '#{value}'") unless File.exist?(value) end), # optional @@ -220,10 +220,10 @@ def self.authors ["taka0125", "tcurdt"] end def self.is_supported?(platform) - platform == :ios + [:ios, :android].include? platform end end end end