Class: Fastlane::Actions::GradleAction

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

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, sh, step_text

Class Method Details

.authorsObject



145
146
147
# File 'lib/fastlane/actions/gradle.rb', line 145

def self.authors
  ['KrauseFx', 'lmirosevic']
end

.available_optionsObject



87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# File 'lib/fastlane/actions/gradle.rb', line 87

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :task,
                                 env_name: 'FL_GRADLE_TASK',
                                 description: 'The gradle task you want to execute, e.g. `assemble` or `test`. For tasks such as `assembleMyFlavorRelease` you should use gradle(task: \'assemble\', flavor: \'Myflavor\', build_type: \'Release\')',
                                 optional: false,
                                 is_string: true),
    FastlaneCore::ConfigItem.new(key: :flavor,
                                 env_name: 'FL_GRADLE_FLAVOR',
                                 description: 'The flavor that you want the task for, e.g. `MyFlavor`. If you are running the `assemble` task in a multi-flavor project, and you rely on Actions.lane_context[Actions.SharedValues::GRADLE_APK_OUTPUT_PATH] then you must specify a flavor here or else this value will be undefined',
                                 optional: true,
                                 is_string: true),
    FastlaneCore::ConfigItem.new(key: :build_type,
                                 env_name: 'FL_GRADLE_BUILD_TYPE',
                                 description: 'The build type that you want the task for, e.g. `Release`. Useful for some tasks such as `assemble`',
                                 optional: true,
                                 is_string: true),
    FastlaneCore::ConfigItem.new(key: :flags,
                                 env_name: 'FL_GRADLE_FLAGS',
                                 description: 'All parameter flags you want to pass to the gradle command, e.g. `--exitcode --xml file.xml`',
                                 optional: true,
                                 is_string: true),
    FastlaneCore::ConfigItem.new(key: :project_dir,
                                 env_name: 'FL_GRADLE_PROJECT_DIR',
                                 description: 'The root directory of the gradle project. Defaults to `.`',
                                 default_value: '.',
                                 is_string: true),
    FastlaneCore::ConfigItem.new(key: :gradle_path,
                                 env_name: 'FL_GRADLE_PATH',
                                 description: 'The path to your `gradlew`. If you specify a relative path, it is assumed to be relative to the `project_dir`',
                                 optional: true,
                                 is_string: true),
    FastlaneCore::ConfigItem.new(key: :properties,
                                 env_name: 'FL_GRADLE_PROPERTIES',
                                 description: 'Gradle properties to be exposed to the gradle script',
                                 optional: true,
                                 is_string: false),
    FastlaneCore::ConfigItem.new(key: :serial,
                                 env_name: 'FL_ANDROID_SERIAL',
                                 description: 'Android serial, wich device should be used for this command',
                                 is_string: true,
                                 default_value: '')
  ]
end

.descriptionObject



77
78
79
# File 'lib/fastlane/actions/gradle.rb', line 77

def self.description
  'All gradle related actions, including building and testing your Android app'
end

.detailsObject



81
82
83
84
85
# File 'lib/fastlane/actions/gradle.rb', line 81

def self.details
  [
    'Run `./gradlew tasks` to get a list of all available gradle tasks for your project'
  ].join("\n")
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


149
150
151
# File 'lib/fastlane/actions/gradle.rb', line 149

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

.outputObject



132
133
134
135
136
137
138
139
# File 'lib/fastlane/actions/gradle.rb', line 132

def self.output
  [
    ['GRADLE_APK_OUTPUT_PATH', 'The path to the newly generated apk file. Undefined in a multi-variant assemble scenario'],
    ['GRADLE_ALL_APK_OUTPUT_PATHS', 'When running a multi-variant `assemble`, the array of signed apk\'s that were generated'],
    ['GRADLE_FLAVOR', 'The flavor, e.g. `MyFlavor`'],
    ['GRADLE_BUILD_TYPE', 'The build type, e.g. `Release`']
  ]
end

.return_valueObject



141
142
143
# File 'lib/fastlane/actions/gradle.rb', line 141

def self.return_value
  'The output of running the gradle task'
end

.run(params) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/fastlane/actions/gradle.rb', line 14

def self.run(params)
  task = params[:task]
  flavor = params[:flavor]
  build_type = params[:build_type]

  gradle_task = [task, flavor, build_type].join

  project_dir = params[:project_dir]

  gradle_path_param = params[:gradle_path] || './gradlew'

  # Get the path to gradle, if it's an absolute path we take it as is, if it's relative we assume it's relative to the project_dir
  gradle_path = if Pathname.new(gradle_path_param).absolute?
                  File.expand_path(gradle_path_param)
                else
                  File.expand_path(File.join(project_dir, gradle_path_param))
                end

  # Ensure we ended up with a valid path to gradle
  UI.user_error!("Couldn't find gradlew at path '#{File.expand_path(gradle_path)}'") unless File.exist?(gradle_path)

  # Construct our flags
  flags = []
  flags << "-p #{project_dir.shellescape}"
  flags << params[:properties].map { |k, v| "-P#{k}=#{v}" }.join(' ') unless params[:properties].nil?
  flags << params[:flags] unless params[:flags].nil?

  # Run the actual gradle task
  gradle = Helper::GradleHelper.new(gradle_path: gradle_path)

  # If these were set as properties, then we expose them back out as they might be useful to others
  Actions.lane_context[SharedValues::GRADLE_BUILD_TYPE] = build_type if build_type
  Actions.lane_context[SharedValues::GRADLE_FLAVOR] = flavor if flavor

  # We run the actual gradle task
  result = gradle.trigger(task: gradle_task, serial: params[:serial], flags: flags.join(' '))

  # If we didn't build, then we return now, as it makes no sense to search for apk's in a non-`assemble` scenario
  return result unless task.start_with?('assemble')

  apk_search_path = File.join(project_dir, '*', 'build', 'outputs', 'apk', '*.apk')

  # Our apk is now built, but there might actually be multiple ones that were built if a flavor was not specified in a multi-flavor project (e.g. `assembleRelease`), however we're not interested in unaligned apk's...
  new_apks = Dir[apk_search_path].reject { |path| path =~ /^.*-unaligned.apk$/i}
  new_apks = new_apks.map { |path| File.expand_path(path)}

  # We expose all of these new apk's
  Actions.lane_context[SharedValues::GRADLE_ALL_APK_OUTPUT_PATHS] = new_apks

  # We also take the most recent apk to return as SharedValues::GRADLE_APK_OUTPUT_PATH, this is the one that will be relevant for most projects that just build a single build variant (flavor + build type combo). In multi build variants this value is undefined
  last_apk_path = new_apks.sort_by(&File.method(:mtime)).last
  Actions.lane_context[SharedValues::GRADLE_APK_OUTPUT_PATH] = File.expand_path(last_apk_path) if last_apk_path

  # Give a helpful message in case there were no new apk's. Remember we're only running this code when assembling, in which case we certainly expect there to be an apk
  UI.message('Couldn\'t find any new signed apk files...') if new_apks.empty?

  return result
end