How can testers recieve app updates in crashlytics beta

1.1k Views Asked by At

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.

1

There are 1 best solutions below

3
On BEST ANSWER

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]"