I'm working for Objective-C project, that uses local pod library.
I wanted write Swift code and use it in the Objective-C project.
I did the bridging, and imported in it the bridging file the Objective-C files that I want to use with Swift.
But I faced file not found error
for the local pod frameworks files if they used in the files imported in the bridging file.
:0: error: failed to emit precompiled header '....-Bridging-Header-swift_1JOPQHYEXCCEP-clang_2PPI06A9LWBDJ.pch' for bridging header '/....-Bridging-Header.h'
Local Libraries,
pod 'MYProjectLibCore', :path => '../MYProjectLibCore'
pod 'MYProjectLibUI', :path => '../MYProjectLibUI'
I tried all solutions here, but it didn't help