Xcode 14 Beta更新后的特定目标签名错误

发布于 2025-02-06 06:03:14 字数 537 浏览 0 评论 0 原文

如下图所示,POD中有三种类型的目标。

这些类型中的每一种意味着什么?

最近,我升级到 xcode 14 beta ,我不得不使用蓝色的签名。

另外,正如我在项目中启用了比特码一样,我必须手动为这些目标启用位代码。

xcode 13.4.1 中不需要这些。

我阅读 xcode 14 Repeasenotes ,但未能得到对这些变化的正确理解。

As you can see in the picture below, there are three types of targets available in pods.

Targets

What does each one of those types mean?

Recently I upgraded to Xcode 14 Beta, and I had to use signing for blue-colored ones.

Also, as I have bitcode enabled in my project, I had to manually enable bit code for those targets.

None of which was required in Xcode 13.4.1.

I read Xcode 14 releasenotes but failed to get a proper understanding of these changes.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉宸 2025-02-13 06:03:15

不知道内部设备,但我确实面临着为所有豆荚目标手动启用比特码的问题。我正在使用下面的片段来自动化这一点。

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['ENABLE_BITCODE'] = 'YES'
    end
  end
end

Don't know about the internals, but I did face the problem of manually enabling bitcode for all my pods targets. I am using the snippet below to automate that.

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['ENABLE_BITCODE'] = 'YES'
    end
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文