Sha256: d72a8c2c177ea972e50eebf8db0f0eb94692d7a03b58b002177db1335c910ccc

Contents?: true

Size: 1.87 KB

Versions: 23

Compression:

Stored size: 1.87 KB

Contents

# Customise this file, documentation can be found here:
# https://github.com/KrauseFx/fastlane/tree/master/docs
# All available actions: https://github.com/KrauseFx/fastlane/blob/master/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`

# By default, fastlane will send which actions are used
# No personal data is shared, more information on https://github.com/fastlane/enhancer
# Uncomment the following line to opt out
# opt_out_usage

# 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/KrauseFx/fastlane/blob/master/docs/Platforms.md
# All available actions: https://github.com/KrauseFx/fastlane/blob/master/docs/Actions.md

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
fastlane-1.49.0 lib/assets/FastfileTemplateAndroid
fastlane-1.48.0 lib/assets/FastfileTemplateAndroid
fastlane-1.47.0 lib/assets/FastfileTemplateAndroid
fastlane-1.46.1 lib/assets/FastfileTemplateAndroid
fastlane-1.46.0 lib/assets/FastfileTemplateAndroid
fastlane-1.45.0 lib/assets/FastfileTemplateAndroid
fastlane-1.44.0 lib/assets/FastfileTemplateAndroid
fastlane-1.43.0 lib/assets/FastfileTemplateAndroid
fastlane-1.42.0 lib/assets/FastfileTemplateAndroid
fastlane-1.41.1 lib/assets/FastfileTemplateAndroid
fastlane-1.41.0 lib/assets/FastfileTemplateAndroid
fastlane-1.40.0 lib/assets/FastfileTemplateAndroid
fastlane-1.39.0 lib/assets/FastfileTemplateAndroid
fastlane-1.38.1 lib/assets/FastfileTemplateAndroid
fastlane-1.38.0 lib/assets/FastfileTemplateAndroid
fastlane-1.37.0 lib/assets/FastfileTemplateAndroid
fastlane-1.36.4 lib/assets/FastfileTemplateAndroid
fastlane-1.36.3 lib/assets/FastfileTemplateAndroid
fastlane-1.36.2 lib/assets/FastfileTemplateAndroid
fastlane-1.36.1 lib/assets/FastfileTemplateAndroid