Sha256: 046829cc82252a15066e85fc1579712bb92b62b9e53fffdc7578f45204348c80

Contents?: true

Size: 1.87 KB

Versions: 18

Compression:

Stored size: 1.87 KB

Contents

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

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
fastlane-1.66.0 lib/assets/FastfileTemplateAndroid
fastlane-1.65.0 lib/assets/FastfileTemplateAndroid
fastlane-1.64.0 lib/assets/FastfileTemplateAndroid
fastlane-1.63.1 lib/assets/FastfileTemplateAndroid
fastlane-1.63.0 lib/assets/FastfileTemplateAndroid
fastlane-1.62.0 lib/assets/FastfileTemplateAndroid
fastlane-1.61.0 lib/assets/FastfileTemplateAndroid
fastlane-1.60.0 lib/assets/FastfileTemplateAndroid
fastlane-1.59.0 lib/assets/FastfileTemplateAndroid
fastlane-1.58.0 lib/assets/FastfileTemplateAndroid
fastlane-1.57.0 lib/assets/FastfileTemplateAndroid
fastlane-1.56.0 lib/assets/FastfileTemplateAndroid
fastlane-1.55.0 lib/assets/FastfileTemplateAndroid
fastlane-1.54.0 lib/assets/FastfileTemplateAndroid
fastlane-1.53.0 lib/assets/FastfileTemplateAndroid
fastlane-1.52.0 lib/assets/FastfileTemplateAndroid
fastlane-1.51.0 lib/assets/FastfileTemplateAndroid
fastlane-1.50.0 lib/assets/FastfileTemplateAndroid