TestFlight:如何在上传到App Store之前添加要构建的测试详细信息?

时间:2017-11-02 11:32:15

标签: ios app-store testflight

我想添加"测试内容"处理构建之前的测试详细信息部分中的文本,并获得测试状态。有可能吗?

1 个答案:

答案 0 :(得分:0)

使用Fastlane

听起来好像您想开始将自动化/ CI上传到TestFlight上更复杂的事情。我建议您试用一下实现您想要的功能的Fastlane。

localized_build_info

除了您作为upload_to_testflight的一部分提交的其他值之外,您还需要localized_build_info

upload_to_testflight(localized_build_info: {
                       "default": {
                         whats_new: "Your test details go here",
                       },
                       "en-US": {
                         whats_new: "Your localized test details go here",
                       }
                     })