Sha256: e6ea51e587f9d92970bb11cedf75a601bb24e142c9b8a58b0cba57685bda0f8a

Contents?: true

Size: 1.76 KB

Versions: 140

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 sent or shared. Learn more at https://github.com/fastlane/enhancer

Version data entries

140 entries across 140 versions & 1 rubygems

Version Path
fastlane-2.29.0.beta.20170508010014 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.29.0.beta.20170507010054 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.29.0.beta.20170506010047 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.28.9 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.29.0.beta.20170505010029 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.29.0.beta.20170504010033 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.28.8 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.29.0.beta.20170503010035 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.29.0.beta.20170502010055 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.29.0.beta.20170501010050 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.29.0.beta.20170430010051 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.28.7 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.29.0.beta.20170429010036 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.28.6 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.29.0.beta.20170428010037 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.29.0.beta.20170427010043 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.28.5 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.29.0.beta.20170426010043 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.28.4 fastlane/lib/assets/FastfileTemplateAndroid
fastlane-2.29.0.beta.20170425010038 fastlane/lib/assets/FastfileTemplateAndroid