Created
March 19, 2019 07:51
-
-
Save xotahal/169e7774a27cc26036bd10ba32a30663 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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