-
-
Save Kashif-E/edf9ccb9d004a357fecc2bce1abdb4f0 to your computer and use it in GitHub Desktop.
fastlane code forgradle build
This file contains 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
default_platform(:android) | |
platform :android do | |
desc "this lane uploads QA build to app testers" | |
lane :distributeQA do | |
gradle( | |
task: "clean assemble", | |
flavor: "qa", | |
build_type: "Debug" | |
) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment