私の xcodeproject には、"match Adhoc teamid "として署名リリースが設定されています。
これは、アドホック リリースをビルドし、アドホック プロビジョニング プロファイルをマッチ インストールし、ジムで使用する場合に問題なく機能します。
しかし、appstore release match を使用すると、appstore プロビジョニング プロファイル (「match Appstore teamid」) が正しくインストールされますが、ジムは引き続きアドホックで署名しようとするようです。エラーを与える:
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')
私のファストファイル
-------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",