Method: Fastlane::Actions::AdbDevicesAction.available_options

Defined in:
fastlane/lib/fastlane/actions/adb_devices.rb

.available_optionsObject



25
26
27
28
29
30
31
32
33
# File 'fastlane/lib/fastlane/actions/adb_devices.rb', line 25

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :adb_path,
                                 env_name: "FL_ADB_PATH",
                                 description: "The path to your `adb` binary (can be left blank if the ANDROID_SDK_ROOT environment variable is set)",
                                 optional: true,
                                 default_value: "adb")
  ]
end