Bhargav
Bhargav

Reputation: 8277

How can testers recieve app updates in crashlytics beta

I have a nightly build set up which deploys to crashlytics beta every night, but for each apk I upload I have to manually add testers, how can testers just receive the most recently uploaded apk to crashlytics beta instead of having to add them every time, it completely misses the point of continuous delivery.

Upvotes: 2

Views: 1164

Answers (1)

Mike Bonnell
Mike Bonnell

Reputation: 16249

Mike from Fabric here.

You can add tester group aliases or email address into your app's gradle build type or flavor that you're distributing. From the documentation, add the group alias, or aliases using:

ext.betaDistributionGroupAliases="my-best-testers"

or a comma-separated file of the group aliases:

ext.betaDistributionGroupAliasesFilePath=group_aliases.txt

You can also specify specific individual testers via a comma separated file of testers: (Use the following format: first name, last name, email address.)

ext.betaDistributionEmailsFilePath="beta_distribution_emails.txt"

or their email addresses:

ext.betaDistributionEmails="[email protected], [email protected]"

Upvotes: 3

Related Questions