Sha256: 4baa9afff0eb42057e33615a2b9add4f3ca876ae70c95494207c6837ecd24811

Contents?: true

Size: 1.76 KB

Versions: 195

Compression:

Stored size: 1.76 KB

Contents

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

# fastlane reports which actions are used. No personal data is recorded. 
# Learn more at https://github.com/fastlane/fastlane#metrics

Version data entries

195 entries across 195 versions & 1 rubygems

Version Path
fastlane-2.60.0.beta.20171002010004 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.60.0.beta.20171001010003 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.60.0.beta.20170930010003 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.60.0.beta.20170929010003 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.60.0.beta.20170928010003 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.60.0.beta.20170927010003 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.60.0.beta.20170926010004 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.59.0 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.59.0.beta.20170925010002 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.59.0.beta.20170924010003 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.59.0.beta.20170923010003 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.59.0.beta.20170922010003 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.59.0.beta.20170921010003 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.58.0 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.58.0.beta.20170920010003 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.57.2 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.57.1 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.58.0.beta.20170919010003 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.57.0 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.57.0.beta.20170918010003 fastlane/lib/assets/FastfileTemplateAndroid