0

我的 Fastlane 已配置好并且运行良好。比赛已设置好并且运行良好。一切都会自动检测项目和捆绑包 ID,并且运行良好......

但我需要手动设置 profile_path 如下:

automatic_code_signing(
use_automatic_signing:false,
team_id:“ZZZZ”,
code_sign_identity:“iPhone 开发者”,
profile_name:ENV['sigh_com.blah.blah_development_profile-name'])

这需要知道捆绑 ID 才能传递到环境变量中。所有动作似乎都知道捆绑 ID,但我无法在任何地方得到它。我不想手动对 ID 进行硬编码。

如果我不执行上述步骤,即使使用匹配设置,构建也会失败。

4

1 回答 1

1

看起来 usingCredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)应该足以获取应用程序标识符,假设您将其定义为您的Appfile或类似的一部分。

于 2019-02-05T15:52:24.003 回答