fastlane/lib/fastlane/actions/adb.rb in fastlane_hotfix-2.165.1 vs fastlane/lib/fastlane/actions/adb.rb in fastlane_hotfix-2.187.0

- old
+ new

@@ -25,21 +25,18 @@ def self.available_options [ FastlaneCore::ConfigItem.new(key: :serial, env_name: "FL_ANDROID_SERIAL", description: "Android serial of the device to use for this command", - is_string: true, default_value: ""), FastlaneCore::ConfigItem.new(key: :command, env_name: "FL_ADB_COMMAND", description: "All commands you want to pass to the adb command, e.g. `kill-server`", - optional: true, - is_string: true), + optional: true), FastlaneCore::ConfigItem.new(key: :adb_path, env_name: "FL_ADB_PATH", optional: true, - description: "The path to your `adb` binary (can be left blank if the ANDROID_SDK_ROOT environment variable is set)", - is_string: true, + description: "The path to your `adb` binary (can be left blank if the ANDROID_SDK_ROOT, ANDROID_HOME or ANDROID_SDK environment variable is set)", default_value: "adb") ] end def self.output