ios - 仅在命令行工具中找不到匹配的配置文件
<p><p>我的项目能够使用 Xcode 在我的 iPhone 上构建和运行,这意味着证书和配置文件都已正确设置。但是,如果我尝试使用命令行工具在我的设备上运行我的应用程序,它会告诉我找不到匹配的配置文件。可能是什么问题呢? </p>
<p> <a href="/image/c3Ezn.png" rel="noreferrer noopener nofollow"><img src="/image/c3Ezn.png" alt="enter image description here"/></a> </p>
<p>正如您在这张图片中看到的,它显示证书和配置文件没有问题。但是当我使用命令行工具时,它失败了。</p>
<p>这是我在命令行中输入的内容:</p>
<pre><code>xcodebuild \
-workspace MyApp.xcworkspace \
-scheme Snail \
-configuration Debug \
-destination "platform=iOS,id=<My Device UDID>" \
CODE_SIGN_IDENTITY="iPhone Distribution: My Cert Name" \
clean test
</code></pre>
<p>命令行工具出错:</p>
<p> <a href="/image/w0v4Y.png" rel="noreferrer noopener nofollow"><img src="/image/w0v4Y.png" alt="enter image description here"/></a> </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>如果您没有明确指定 <code>xcodebuild</code> 应该使用的配置文件,它将使用您的目标的“build设置”中设置的一个。为了指定配置文件,您需要知道它的 UUID(可以通过在文本编辑器中打开 <code>.mobileprovision</code> 找到)。如果您的个人资料 UUID 为“1234567890”,则更新后的运行命令为:</p>
<pre><code>xcodebuild \
-workspace MyApp.xcworkspace \
-scheme Snail \
-configuration Debug \
-destination "platform=iOS,id=<My Device UDID>" \
CODE_SIGN_IDENTITY="iPhone Distribution: My Cert Name" \
PROVISIONING_PROFILE="1234567890" \
clean test
</code></pre>
<p>当然,请确保您的设备包含在配置文件中 :)</p></p>
<p style="font-size: 20px;">关于ios - 仅在命令行工具中找不到匹配的配置文件,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/37427283/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/37427283/
</a>
</p>
页:
[1]