Skip to content

Instantly share code, notes, and snippets.

@xotahal
Created March 19, 2019 07:51
Show Gist options
  • Save xotahal/169e7774a27cc26036bd10ba32a30663 to your computer and use it in GitHub Desktop.
Save xotahal/169e7774a27cc26036bd10ba32a30663 to your computer and use it in GitHub Desktop.
desc "Build an android release"
lane :build do |options|
gradle(
task: "assemble",
build_type: "Release",
flavor: options[:flavor],
properties: {
'vcode' => build_number,
'vname' => options[:next_version]
}
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment