class Fastlane::Actions::AndroidGetVersionNameAction
Public Class Methods
available_options()
click to toggle source
# File lib/fastlane/plugin/versioning_android/actions/android_get_version_name.rb, line 30 def self.available_options [ FastlaneCore::ConfigItem.new(key: :gradle_file, env_name: "FL_ANDROID_GET_VERSION_NAME_GRADLE_FILE", description: "(optional) Specify the path to your app build.gradle if it isn't in the default location", optional: true, type: String, default_value: "app/build.gradle", verify_block: proc do |value| UI.user_error!("Could not find app build.gradle file") unless File.exist?(value) || Helper.test? end) ] end
description()
click to toggle source
# File lib/fastlane/plugin/versioning_android/actions/android_get_version_name.rb, line 22 def self.description "Get the Version Name of your Android project" end
details()
click to toggle source
# File lib/fastlane/plugin/versioning_android/actions/android_get_version_name.rb, line 26 def self.details "This action will return current Version Name of your Android project." end
example_code()
click to toggle source
# File lib/fastlane/plugin/versioning_android/actions/android_get_version_name.rb, line 62 def self.example_code [ 'version_name = android_get_version_name # build.gradle is in the default location', 'version_name = android_get_version_name(gradle_file: "/path/to/build.gradle")' ] end
is_supported?(platform)
click to toggle source
# File lib/fastlane/plugin/versioning_android/actions/android_get_version_name.rb, line 58 def self.is_supported?(platform) [:android].include?(platform) end
output()
click to toggle source
# File lib/fastlane/plugin/versioning_android/actions/android_get_version_name.rb, line 44 def self.output [ ['ANDROID_VERSION_NAME', 'The Version Name of your Android project'] ] end
return_value()
click to toggle source
# File lib/fastlane/plugin/versioning_android/actions/android_get_version_name.rb, line 50 def self.return_value "The Version Name of your Android project" end
run(params)
click to toggle source
# File lib/fastlane/plugin/versioning_android/actions/android_get_version_name.rb, line 8 def self.run(params) gradle_file_path = Helper::VersioningAndroidHelper.get_gradle_file_path(params[:gradle_file]) version_name = Helper::VersioningAndroidHelper.read_key_from_gradle_file(gradle_file_path, "versionName") if version_name == false UI.user_error!("Unable to find the versionName in build.gradle file at #{gradle_file_path}.") end UI.success("👍 Current Android Version Name is: #{version_name}") # Store the Version Name in the shared hash Actions.lane_context[SharedValues::ANDROID_VERSION_NAME] = version_name end