Class: Fastlane::Actions::AdbAction

Inherits:
Fastlane::Action show all
Defined in:
fastlane/lib/fastlane/actions/adb.rb

Constant Summary

Constants inherited from Fastlane::Action

Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, deprecated_notes, lane_context, method_missing, other_action, sample_return_value, shell_out_should_use_bundle_exec?, step_text

Class Method Details

.authorsObject



66
67
68
# File 'fastlane/lib/fastlane/actions/adb.rb', line 66

def self.authors
  ["hjanuschka"]
end

.available_optionsObject



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'fastlane/lib/fastlane/actions/adb.rb', line 25

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",
                                 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),
    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, ANDROID_HOME or ANDROID_SDK environment variable is set)",
                                 default_value: "adb")
  ]
end

.categoryObject



46
47
48
# File 'fastlane/lib/fastlane/actions/adb.rb', line 46

def self.category
  :building
end

.descriptionObject



17
18
19
# File 'fastlane/lib/fastlane/actions/adb.rb', line 17

def self.description
  "Run ADB Actions"
end

.detailsObject



21
22
23
# File 'fastlane/lib/fastlane/actions/adb.rb', line 21

def self.details
  "see adb --help for more details"
end

.example_codeObject



50
51
52
53
54
55
56
# File 'fastlane/lib/fastlane/actions/adb.rb', line 50

def self.example_code
  [
    'adb(
      command: "shell ls"
    )'
  ]
end

.is_supported?(platform) ⇒ Boolean

Returns:



70
71
72
# File 'fastlane/lib/fastlane/actions/adb.rb', line 70

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

.outputObject



43
44
# File 'fastlane/lib/fastlane/actions/adb.rb', line 43

def self.output
end

.return_typeObject



62
63
64
# File 'fastlane/lib/fastlane/actions/adb.rb', line 62

def self.return_type
  :string
end

.return_valueObject



58
59
60
# File 'fastlane/lib/fastlane/actions/adb.rb', line 58

def self.return_value
  "The output of the adb command"
end

.run(params) ⇒ Object



7
8
9
10
11
# File 'fastlane/lib/fastlane/actions/adb.rb', line 7

def self.run(params)
  adb = Helper::AdbHelper.new(adb_path: params[:adb_path])
  result = adb.trigger(command: params[:command], serial: params[:serial])
  return result
end