我正在尝试Jenkins
使用fastlane
. 我的项目中有两个目标 - 主应用程序和手表套件扩展。当我尝试使用 更改 Ad Hoc 签名的配置文件时xcargs
,gym
更改所有目标的配置文件并且我的构建失败。
这是我的健身房命令。
gym(scheme: "MyApp",
workspace: "MyApp.xcworkspace",
xcargs: "PROVISIONING_PROFILE_SPECIFIER='MyApp Ad Hoc'")
这是输出。
Building MyApp/MyApp WatchKit App [Release]
[08:34:48]: ▸ Check Dependencies
[08:34:48]: ▸ ❌ Provisioning profile "MyApp Ad Hoc" doesn't match the entitlements file's value for the application-identifier entitlement.
如何仅为特定目标更改配置文件?谢谢你。