5

我有一个具有多个目标的 Xcode 项目。其中两个目标生成应用程序,每个都有自己的捆绑 ID,通过 Enterprise 开发人员团队 ID 分发,一个目标通过 App Store 开发人员团队 ID 分发。我正在尝试为这个项目设置 Fastlane Match,但我无法让它与多个团队打交道。

这是我的内容Matchfile

git_url("git@github.com:myorg/certificates-repo.git")
git_branch("master")

app_identifier([
    "my.app.prod",   # <-- Team ID A
    "my.app.dev",    # <-- Team ID B
    "my.app.staging" # <-- Team ID B
])

clone_branch_directly(true)

我的Appfile

team_id "Team ID B"
apple_id "my@apple.id"

fastlane match从命令行运行以初始化 Fastlane Match 时,我收到此错误:

==========================================
Could not find App ID with bundle identifier 'my.app.prod'
You can easily generate a new App ID on the Developer Portal using 'produce':

fastlane produce -u my@apple.id -a my.app.prod --skip_itc

You will be asked for any missing information, like the full name of your app
If the app should also be created on App Store Connect, remove the --skip_itc from the command above
==========================================

An app with that bundle ID needs to exist in order to create a provisioning profile for it

这是有道理的,因为它不知道Team ID A. 我可以弯曲 Fastlane Match 以在各种应用标识符中使用我的团队 id 吗?

4

1 回答 1

2

您可以使用环境变量

  • 创建两个名为.env.target1.env.target2 的文件。
  • 使用适当的值在两个文件中定义MATCH_APP_IDENTIFIERFASTLANE_TEAM_IDMATCH_USERNAME 。您可以将.env.env.default文件用于共享值以避免重复或将它们保留在Matchfile / Appfile中。
  • 在您的 Fastfile 中定义一个使用match. †</li>
  • 使用以下命令执行匹配:fastlane <lane-name> --env target1

†</p>

lane :<lane-name> do
    match()
end
于 2019-03-07T15:02:46.067 回答