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

4.7k Views Asked by At

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

There are 1 best solutions below

1
Ravi Kant Bagoria On

Remove the key and value for DebugSymbolsPath from info.plist

<key>DebugSymbolsPath</key>
<string>dSYMs</string>