Sha256: a55559857bc763ed3b091891ed17e0c42af547a6e23ad86100b811e88963578a

Contents?: true

Size: 1.83 KB

Versions: 43

Compression:

Stored size: 1.83 KB

Contents

# Customise this file, documentation can be found here:
# https://github.com/fastlane/fastlane/tree/master/fastlane/docs
# All available actions: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Actions.md
# can also be listed using the `fastlane actions` command

# Change the syntax highlighting to Ruby
# All lines starting with a # are ignored when running `fastlane`

# If you want to automatically update fastlane if a new version is available:
# update_fastlane

# This is the minimum version number required.
# Update this, if you use features of a newer version
fastlane_version "[[FASTLANE_VERSION]]"

default_platform :android

platform :android do
  before_all do
    # ENV["SLACK_URL"] = "https://hooks.slack.com/services/..."
  end

  desc "Runs all the tests"
  lane :test do
    gradle(task: "test")
  end

  desc "Submit a new Beta Build to Crashlytics Beta"
  lane :beta do
    gradle(task: "assembleRelease")
    crashlytics

    # sh "your_script.sh"
    # You can also use other beta testing services here
  end

  desc "Deploy a new version to the Google Play"
  lane :deploy do
    gradle(task: "assembleRelease")
    supply
  end

  # You can define as many lanes as you want

  after_all do |lane|
    # This block is called, only if the executed lane was successful

    # slack(
    #   message: "Successfully deployed new App Update."
    # )
  end

  error do |lane, exception|
    # slack(
    #   message: exception.message,
    #   success: false
    # )
  end
end


# More information about multiple platforms in fastlane: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md
# All available actions: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Actions.md

# fastlane reports which actions are used
# No personal data is sent or shared. Learn more at https://github.com/fastlane/enhancer

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
fastlane-1.111.0 lib/assets/FastfileTemplateAndroid
fastlane-1.110.0 lib/assets/FastfileTemplateAndroid
fastlane-1.109.0 lib/assets/FastfileTemplateAndroid
fastlane-1.108.0 lib/assets/FastfileTemplateAndroid
fastlane-1.107.0 lib/assets/FastfileTemplateAndroid
fastlane-1.106.2 lib/assets/FastfileTemplateAndroid
fastlane-1.106.1 lib/assets/FastfileTemplateAndroid
fastlane-1.106.0 lib/assets/FastfileTemplateAndroid
fastlane-1.105.3 lib/assets/FastfileTemplateAndroid
fastlane-1.105.2 lib/assets/FastfileTemplateAndroid
fastlane-1.105.1 lib/assets/FastfileTemplateAndroid
fastlane-1.105.0 lib/assets/FastfileTemplateAndroid
fastlane-1.104.0 lib/assets/FastfileTemplateAndroid
fastlane-1.103.0 lib/assets/FastfileTemplateAndroid
fastlane-1.102.0 lib/assets/FastfileTemplateAndroid
fastlane-1.101.0 lib/assets/FastfileTemplateAndroid
fastlane-1.100.0 lib/assets/FastfileTemplateAndroid
fastlane-1.99.0 lib/assets/FastfileTemplateAndroid
fastlane-1.98.0 lib/assets/FastfileTemplateAndroid
fastlane-1.97.2 lib/assets/FastfileTemplateAndroid