作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要制作一份包含应用程序名称及其实时版本的报告。我的 Apple ID 被分配为多个团队的管理员,我需要循环每个应用商店团队内的所有应用程序并获取其名称和实时版本。
我只能使用以下脚本获取一个开发团队的应用程序名称和版本,现在我需要为我的 Apple ID 分配到的所有开发团队获取它。
lane :get_apps_names_and_versions do |options|
require "spaceship"
all_apps = ""
Spaceship::Tunes::Application.all.collect do |app|
all_apps << "#{app.name} #{app.live_version.version} \n"
end
File.write('all_apps', all_apps[0..-3])
end
最佳答案
如果您像我一样想要获取实时版本而无需使用 Spacehip 登录(例如在 CI/CD 管道中)并使用 API key ,您可以这样做:
app_store_build_number
live_version = lane_context[SharedValues::LATEST_VERSION]
检查“车道变量”部分:https://docs.fastlane.tools/actions/app_store_build_number/
关于ios - 如何使用 faSTLane 获取应用程序名称及其实时版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59344293/
概述 CentOS Stream 成立于 2019 年,是“RHEL 下一步的滚动预览”。Red Hat 首席技术官 Chris Wright 和 CentOS 社区经理 Rich Bowen 各
我有一个使用 Mesosphere DC/OS 编排选项进行配置的 Azure 容器服务 (ACS) 集群。我可以在 Marathon UI 中创建一个应用程序。 但是,当我通过 Marathon U
我是一名优秀的程序员,十分优秀!