我是靠谱客的博主 甜美芒果,最近开发中收集的这篇文章主要介绍Xcode 14 pod 签名报错的解决方案,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

背景:

在使用Xcode 14进行pod install 后,库里有bundle资源文件则会在编译时报错,报error:“igning for “xxxxx” requires a development team. Select a development team in the Signing & Capabilities editor.”

解决方案:

方案一:
给报错的pod库逐个设置bundle identifier和team

缺点:每次执行pod install之后我们的配置就会消失,需要再次手动设置一遍

方案二:

在Podfile中添加以下配置,添加后再重新pod update即可

post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings["DEVELOPMENT_TEAM"] = " Your Team ID
"
end
end
end
end

若不想设置具体的team ID可尝试下面的配置:

post_install do |installer|
installer.pods_project.targets.each do |target|
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end
end

以上方案来源于:https://github.com/CocoaPods/CocoaPods/issues/11402

最后

以上就是甜美芒果为你收集整理的Xcode 14 pod 签名报错的解决方案的全部内容,希望文章能够帮你解决Xcode 14 pod 签名报错的解决方案所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部