简体   繁体   English

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

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

I want to add "What to test" text in Test Details section before the build is processed and get Testing status.我想在处理构建并获取测试状态之前在“测试详细信息”部分添加“测试内容”文本。 Is it possible?有可能吗?

Using Fastlane使用快速通道

It sounds like you want to start doing more sophisticated things with regards automated / CI uploads to TestFlight.听起来您想开始做更复杂的事情,将自动化 / CI 上传到 TestFlight。 I recommend trying out Fastlane which has implemented exactly what you want.我建议您试用 Fastlane,它完全实现了您想要的功能。

localized_build_info localized_build_info

In addition to the other values you submit as part of upload_to_testflight you need the 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",
                       }
                     })

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 当我添加构建以测试如何解决此问题时,在新组testflight中缺少上传日期状态的合规性 - Missing compliance in upload date status in new group testflight when i add the build to test how to i solve this App Store Connect 无法将组添加到 TestFlight 构建 - App Store Connect cannot add group to TestFlight build 如何在testflight上自动上传构建? - How to automatically upload build on testflight? KeyFin对于TestFlight和App store构建不一样吗? - Keychain not the same for TestFlight vs App store build? 在不上传App Store的情况下,我们可以在TestFlight中上传iOS应用多少次? - How many times can we upload iOS app in TestFlight with out uploading App Store? 如何在 App Store Connect 中更新其他人的 iOS TestFlight 版本? - How do I update someone else's iOS TestFlight build in App Store Connect? 之前版本已经在 App Store 上架之后,在 TestFlight 上上传新版本 - New version upload on TestFlight after prior version is already on App store 如何在Testflight App中直接深度链接构建 - How to deeplink directly to build in Testflight App 如何通过Apple TestFlight测试应用内购买? - How to test In App Purchases through Apple TestFlight? 启动TestFlight构建需要花费几秒钟(App Store应用很好) - Launching a TestFlight build takes multiple seconds (App Store apps are fine)
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM