Skip to content

Instantly share code, notes, and snippets.

@sebalopez
Last active July 2, 2021 23:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebalopez/a09976693f0b87839b6a801c5e6fb610 to your computer and use it in GitHub Desktop.
Save sebalopez/a09976693f0b87839b6a801c5e6fb610 to your computer and use it in GitHub Desktop.
Android Fastfile build lane
lane :build do |options|
# clean
gradle(
task: "clean"
)
# dependencies
gradle(
task: 'androidDependencies'
)
# build
gradle(
task: 'assemble',
flavor: options[:flavor],
build_type: 'Release',
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment