Missing path from XCFramework as defined by DebugSymbolsPath in its Info.plist file
Asked Answered
I

1

6

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.

Inkblot answered 9/3, 2023 at 15:12 Comment(2)
Check if the path does really exist. I had to create it manually and after it everything worked fine.Phenomenal
For me it was exactly what the error was saying. There was a .dSYMs in .gitignore and as a result it was not committed on GitHub.Lyceum
M
1

Remove the key and value for DebugSymbolsPath from info.plist

<key>DebugSymbolsPath</key>
<string>dSYMs</string>
Muff answered 12/9, 2023 at 12:4 Comment(1)
I have a similar issue for all frameworks built using the flutter command line. Are there any consequences of removing this key-value pair? If not, how can we prevent these in the first place?Kazim

© 2022 - 2025 — McMap. All rights reserved.