Skip to content

Instantly share code, notes, and snippets.

@Kashif-E
Last active April 24, 2022 12:12
Show Gist options
  • Save Kashif-E/edf9ccb9d004a357fecc2bce1abdb4f0 to your computer and use it in GitHub Desktop.
Save Kashif-E/edf9ccb9d004a357fecc2bce1abdb4f0 to your computer and use it in GitHub Desktop.
fastlane code forgradle build
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