我们可以通过“新增功能”本地化来自动化 Apple App Store Connect 应用程序更新吗?

问题描述 投票:0回答:1

我的应用程序有多种语言版本,并且用户界面需要“新增内容”的翻译版本,这需要大量点击。我们是否可以在 IPA 中包含发行说明以预先填充“新增内容”部分? 我正在看 Fastlane 似乎可以处理这个问题:https://github.com/fastlane/fastlane/issues/17318

flutter app-store-connect fastlane
1个回答
0
投票

你检查过这个吗

      upload_to_testflight(
    beta_app_review_info: {
      contact_email: "[email protected]",
      contact_first_name: "Connect",
      contact_last_name: "API",
      contact_phone: "5558675309",
      demo_account_name: "[email protected]",
      demo_account_password: "connectapi",
      notes: "this is review note for the reviewer <3 thank you for reviewing"
    },
    localized_app_info: {
      "default": {
        feedback_email: "[email protected]",
        marketing_url: "https://example.com/marketing-defafult",
        privacy_policy_url: "https://example.com/privacy-defafult",
        description: "Default description",
      },
      "en-GB": {
        feedback_email: "[email protected]",
        marketing_url: "https://example.com/marketing-en-gb",
        privacy_policy_url: "https://example.com/privacy-en-gb",
        description: "en-gb description",
      }
    },
    localized_build_info: {
      "default": {
        whats_new: "Default changelog",
      },
      "en-GB": {
        whats_new: "en-gb changelog",
      }
    }
  )

供参考:https://docs.fastlane.tools/actions/testflight/#:~:text=a%20log%22%0A)-,upload_to_testflight,-(%0A%20%20beta_app_review_info%3A

© www.soinside.com 2019 - 2024. All rights reserved.