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

TestFlight: How to add test details to build before upload to App Store?

我想在处理构建之前在 测试详细信息 部分添加 "What to test" 文本并获得 测试 状态。可能吗?

使用快速通道

听起来您想开始做一些更复杂的事情来自动/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",
                       }
                     })