class Fastlane::Actions::IncrementVersionCodeAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/android_versioning_plus/actions/increment_version_code.rb, line 72
def self.authors
  ["Manabu OHTAKE"]
end
available_options() click to toggle source

@!group Documentation

# File lib/fastlane/plugin/android_versioning_plus/actions/increment_version_code.rb, line 35
def self.available_options
  [
      FastlaneCore::ConfigItem.new(key: :app_project_dir,
                                   env_name: "ANDROID_VERSIONING_APP_PROJECT_DIR",
                                   description: "The path to the application source folder in the Android project (default: android/app)",
                                   optional: true,
                                   type: String,
                                   default_value: "android/app"),
      FastlaneCore::ConfigItem.new(key: :flavor,
                                   env_name: "ANDROID_VERSIONING_FLAVOR",
                                   description: "The product flavor name (optional)",
                                   optional: true,
                                   type: String),
      FastlaneCore::ConfigItem.new(key: :version_code,
                                   env_name: "ANDROID_VERSIONING_VERSION_CODE",
                                   description: "Change to a specific version (optional)",
                                   optional: true,
                                   type: Integer)
  ]
end
description() click to toggle source
# File lib/fastlane/plugin/android_versioning_plus/actions/increment_version_code.rb, line 56
def self.description
  "Increment the version code of your project"
end
details() click to toggle source
# File lib/fastlane/plugin/android_versioning_plus/actions/increment_version_code.rb, line 60
def self.details
  [
    "This action will increment the version code directly in build.gradle . "
  ].join("\n")
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/android_versioning_plus/actions/increment_version_code.rb, line 76
def self.is_supported?(platform)
  platform == :android
end
output() click to toggle source
# File lib/fastlane/plugin/android_versioning_plus/actions/increment_version_code.rb, line 66
def self.output
  [
    ['VERSION_CODE', 'The new version code']
  ]
end
run(params) click to toggle source
# File lib/fastlane/plugin/android_versioning_plus/actions/increment_version_code.rb, line 10
def self.run(params)
  current_version_code = GetVersionCodeAction.run(params)

  new_version_code =
    if params[:version_code].nil?
      current_version_code.to_i + 1
    elsif params[:version_code] == -1
      ((Time.now.to_f * 1000).to_i / (60 * 1000)).to_i
    else
      params[:version_code].to_i
    end

  SetValueInBuildAction.run(
    app_project_dir: params[:app_project_dir],
    flavor: params[:flavor],
    key: "versionCode",
    value: new_version_code
  )
  Actions.lane_context[SharedValues::VERSION_CODE] = new_version_code.to_s
  new_version_code.to_s
end