简体   繁体   中英

How can testers recieve app updates in crashlytics beta

我有一个每晚进行的构建,每天晚上都要部署到crashlytics beta,但是对于我上传的每个apk,我都必须手动添加测试人员,测试人员如何才能仅将最新上传的apk接收到crashlytics beta中,而不必每次都添加它们,它完全错过了持续交付的重点。

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="BetaUser@yourcompany.com, BetaUser2@yourcompany.com"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM