iOS Fastlane Match代码签名问题

时间:2018-10-12 11:38:26

标签: ios app-store fastlane fastlane-match fastlane-gym

我的xcodeproject的签名发布设置为“ match adhoc teamid

这在构建 adhoc版本,匹配安装临时设置配置文件并供健身房使用时很好用。

但是使用 appstore版本 match可以正确安装appstore配给配置文件(“ match Appstore teamid ”),但看起来Gym仍然尝试再次使用即席签名。给出错误:

error: No profile for team 'xx' matching 'match AdHoc yy' found: 
Xcode couldn't find any provisioning profiles matching 'xx/match 
AdHoc yy'. Install the profile (by dragging and dropping it onto 
Xcode's dock item) or select a different one in the General tab 
of the target editor. (in target 'zz') 

我的Fastfile

    -------adhoc part-------
    match(type: "adhoc", verbose:true)
    gym(scheme: "skoobe[Release]",
          export_method: "ad-hoc",



    -------appstore part-------
    match(type: "appstore", verbose:true)
    gym(scheme: "skoobe[Release]",
          export_method: "app-store",

0 个答案:

没有答案