When I build project, I see build error: ProjectName.debug.xcconfig unable to open file
. I couldn\'t understand my problem for a long time, but today I take att
Xcode 10.1 After trying other suggestions found here #8091 (comment) and at Incorrect path for Pods.debug.xcconfig in Xcode? I found that Kaspik's suggestion worked:
pod deintegrate
pod install
edit the .xcodeproj/project.pbxproj file and change the PBXGroup "path = Pods" to "name = Pods" source https://github.com/CocoaPods/CocoaPods/issues/8091
updated from: pod reintegrate to: pod deintegrate
I was able to manage by reopening Xcode, in my case i had already run pod install with the ide open (Xcode 12.0).
Remove the duplicates from the Pods folder ƒrom xcode project here:
Do the following
This should resolve the problem.
Deleting extra files in target->Linked Frameworks and Libraries
solved my problem
I have encored with this solution...Here is how I solved
Close Xcode,
run on terminal "pod install"
open xcode,
clean build folder and run again