英文:
Missing path from XCFramework as defined by DebugSymbolsPath in its Info.plist file
问题
我有一个包含另一个XCFramework的XCFramework。它们两个都包含dSYMs文件夹。
当我尝试使用xcodebuild
编译主框架时,我收到以下错误消息:
XCFramework中由其Info.plist文件中的DebugSymbolsPath定义的路径丢失
我该如何修复这个问题?问题是,当我从本地机器上使用xcodebuild编译时,我没有看到任何错误,但是当我尝试从CircleCI上运行它时,我的CI作业会因此错误而停止。
英文:
I have a XCFramework with another XCFramework in it. And both of them contains dSYMs folder.
When I try to xcodebuild
the main framework I get an error:
Missing path from XCFramework as defined by DebugSymbolsPath in its Info.plist file
How can I fix that? The thing is, when I xcodebuild it from my local machine I do not see any error, but when I try to run it from CircleCI - my CI job stops with this error.
答案1
得分: 1
Remove the key and value for "DebugSymbolsPath" from info.plist
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
英文:
Remove the key and value for DebugSymbolsPath
from info.plist
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论