##[error]错误:/usr/bin/xcodebuild在Azure DevOps上失败,返回代码:65



我在Azure DevOps中构建iOS应用程序时遇到问题。我在运行xcode构建任务时出现以下错误

❌错误:无法加载文件列表的内容:"/Target Support Files/FirebaseAnalytics/FirebaseAnalytics xcframework input Files.xcfilelist"(在项目"Pods"的目标"FirebaseAnalytics"中(

❌错误:无法加载文件列表的内容:"/Target Support Files/FirebaseAnalytics/FirebaseAnalytics xcframework output Files.xcfilelist"(在项目"Pods"的目标"FirebaseAnalytics"中(

**生成失败**

##[error]错误:/usr/bin/xcodebuild失败,返回代码:65

我正在使用xcode版本13,这是Azure DevOps中MacOs的最新代理。

我正在遵循以下步骤

吊舱安装,xcode构建

有人能告诉我如何解决上述错误吗?

将下面的行添加到您的Podfile中,以指定您不需要对Pods进行签名;

post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end

相关内容

  • 没有找到相关文章

最新更新