Skip to content

Instantly share code, notes, and snippets.

@yasiralijaved
Last active May 2, 2018 18:06
Show Gist options
  • Save yasiralijaved/d8d69ffa78c5e4df6d32af6de0ea82fc to your computer and use it in GitHub Desktop.
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
// 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