Sha256: 3acd0cf480a315546ed1ac1404bcd3ff4139834ba6947407eb45b876fdd46ec9

Contents?: true

Size: 1.75 KB

Versions: 230

Compression:

Stored size: 1.75 KB

Contents

module Fastlane
  module Actions
    module SharedValues
    end

    class AdbDevicesAction < Action
      def self.run(params)
        adb = Helper::AdbHelper.new(adb_path: params[:adb_path])
        result = adb.load_all_devices
        return result
      end

      #####################################################
      # @!group Documentation
      #####################################################

      def self.description
        "Get an Array of Connected android device serials"
      end

      def self.details
        [
          "Fetches device list via adb, e.g. run an adb command on all connected devices."
        ].join("\n")
      end

      def self.available_options
        [
          FastlaneCore::ConfigItem.new(key: :adb_path,
                                       env_name: "FL_ADB_PATH",
                                       description: "The path to your `adb` binary",
                                       is_string: true,
                                       optional: true,
                                       default_value: "adb")
        ]
      end

      def self.output
      end

      def self.example_code
        [
          'adb_devices.each do |device|
            model = adb(command: "shell getprop ro.product.model",
                        serial: device.serial).strip

            puts "Model #{model} is connected"
          end'
        ]
      end

      def self.sample_return_value
        []
      end

      def self.category
        :misc
      end

      def self.return_value
        "Returns an array of all currently connected android devices"
      end

      def self.authors
        ["hjanuschka"]
      end

      def self.is_supported?(platform)
        platform == :android
      end
    end
  end
end

Version data entries

230 entries across 230 versions & 1 rubygems

Version Path
fastlane-2.40.0.beta.20170617010037 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.39.1 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.40.0.beta.20170616010015 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.39.0 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.39.0.beta.20170615010031 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.39.0.beta.20170614010012 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.39.0.beta.20170613010056 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.38.1 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.38.0 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.38.0.beta.20170612010035 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.38.0.beta.20170611010050 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.38.0.beta.20170610010032 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.38.0.beta.20170609010035 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.38.0.beta.20170608010030 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.38.0.beta.20170607010024 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.38.0.beta.20170606010029 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.37.0 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.37.0.beta.20170605010054 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.37.0.beta.20170604010021 fastlane/lib/fastlane/actions/adb_devices.rb
fastlane-2.37.0.beta.20170603010102 fastlane/lib/fastlane/actions/adb_devices.rb