gpt4 book ai didi

testflight - iOS FaSTLane 部署 (TestFlight) - 如何包含 BETA 演示凭据?

转载 作者:行者123 更新时间:2023-12-02 01:12:55 28 4
gpt4 key购买 nike

我们开始使用 Fastlane用于自动化部署,这是一个非常令人印象深刻的工具集。

但有一个谜团:向 Apple 的 TestFlight 提交 BETA 版本时,如何传入 Demo Account 凭据(用户名和密码)?文档似乎没有说明。

这里似乎有一些线索: https://github.com/fastlane/fastlane/blob/master/spaceship/lib/spaceship/test_flight/beta_review_info.rb https://github.com/fastlane/fastlane/blob/master/spaceship/spec/test_flight/app_test_info_spec.rb

似乎确实有一种方法可以为实际的 App Store 提交传递此信息: https://github.com/fastlane/fastlane/blob/master/deliver/Deliverfile.md [查看app_review_information]...但不适用于 TestFlight 测试版。

您如何为 BETA 上传做同样的事情?

非常感谢!

最佳答案

你需要使用Appfilepilotdeliver一样使用它

这是文档。 https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform

我的应用程序文件。是:

app_identifier ENV["app_identifierEnterprise"] # The bundle identifier of your app
apple_id ENV["accountAppleId"] # Your Apple email address
team_name ENV["teamNameEnterprise"]
team_id ENV["teamIdEnterprise"]

for_platform :ios do

for_lane :releaseBeta do
app_identifier ENV["app_identifier"]
apple_id ENV["accountAppleId"]
team_name ENV["teamName"]
team_id ENV["teamId"]
end
end

我使用 .env(一个设置这个变量的文件),但你只需要用 "ValueYouWant"替换 ENV[""]

希望这对您有所帮助。

关于testflight - iOS FaSTLane 部署 (TestFlight) - 如何包含 BETA 演示凭据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44128199/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com