Last active
May 2, 2018 18:06
-
-
Save yasiralijaved/d8d69ffa78c5e4df6d32af6de0ea82fc to your computer and use it in GitHub Desktop.
custom Gradle task "externalQADist" that Jenkins calls to build and distribute the apk and also send the notification to a Slack Channel for External QA Team
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
// Used by Jenkins to distribute apk among External Testers via Fabric Beta | |
task externalQADist (type: GradleBuild) { | |
group 'MyApp Distribution' | |
description 'Task for Jenkins to distribute Build for External QA' | |
tasks = ['clean', | |
'cleanBuildCache', | |
'assembleExternalQA', | |
'crashlyticsUploadDistributionExternalQA'] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment