当前位置: 代码迷 >> Android >> Fastlane脚本-Google Play中的描述版本
  详细解决方案

Fastlane脚本-Google Play中的描述版本

热度:54   发布时间:2023-08-04 09:55:58.0

谁知道我该如何输入“此版本中的新功能”文本? 在Fastfile中使用Fastlane?

Google Play栏位:

快速线脚本:

lane :googleplay do | options |
    track = options[:track]

    supply(
            track: track,
            'parameter': ?
        )

end

从Fastlane文档

变更日志(新功能)

您可以在每种语言环境的changelogs /目录下添加changelog文件。 文件名应与它代表的APK的版本代码完全匹配。 如果运行时没有元数据/目录,fastlane supply init将根据Google Play上的现有数据填充变更日志文件。

└── fastlane
    └── metadata
       └── android
          ├── en-US
          │   └── changelogs
          │       ├── 100000.txt
          │       └── 100100.txt
          └── fr-FR
              └── changelogs
                   └── 100100.txt

  相关解决方案