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



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

def self.authors
  ["hjanuschka"]
end

.available_optionsObject



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'fastlane/lib/fastlane/actions/adb.rb', line 27

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),
    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,
                                 default_value: "adb")
  ]
end

.categoryObject



51
52
53
# File 'fastlane/lib/fastlane/actions/adb.rb', line 51

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
24
25
# File 'fastlane/lib/fastlane/actions/adb.rb', line 21

def self.details
  [
    "see adb --help for more details"
  ].join("\n")
end

.example_codeObject



55
56
57
58
59
60
61
# File 'fastlane/lib/fastlane/actions/adb.rb', line 55

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

.is_supported?(platform) ⇒ Boolean

Returns:



75
76
77
# File 'fastlane/lib/fastlane/actions/adb.rb', line 75

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

.outputObject



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

def self.output
end

.return_typeObject



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

def self.return_type
  :string
end

.return_valueObject



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

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