ios - 如何从配置文件中获取代码签名身份的名称?
<p><p>我有一些配置文件,例如</p>
<pre><code>./profiles/first.mobileprovision
./profiles/second.mobileprovision
./profiles/third.mobileprovision
</code></pre>
<p>我想知道每个人的代码签名身份。是否有可以打印的命令(以标准格式,如 "iPhone Distribution: Developer Name (ABCDE12345)")?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您可以使用...以可读形式转储配置文件</p>
<pre><code>security cms -D -i
</code></pre>
<p>但是,我不确定您要查找的信息是否以您想要的形式存在。如果我对“key”的输出进行 grep,我会得到以下列表...</p>
<pre><code><key>AppIDName</key>
<key>ApplicationIdentifierPrefix</key>
<key>CreationDate</key>
<key>DeveloperCertificates</key>
<key>Entitlements</key>
<key>application-identifier</key>
<key>get-task-allow</key>
<key>keychain-access-groups</key>
<key>ExpirationDate</key>
<key>Name</key>
<key>ProvisionedDevices</key>
<key>TeamIdentifier</key>
<key>TeamName</key>
<key>TimeToLive</key>
<key>UUID</key>
<key>Version</key>
</code></pre>
<p>...但这可能与我选择的配置文件类型有关。</p></p>
<p style="font-size: 20px;">关于ios - 如何从配置文件中获取代码签名身份的名称?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/37545264/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/37545264/
</a>
</p>
页:
[1]