This question is already asked here But no answers work for me. I have tried all the ways which are mentioned below.
- Open project using .xcworkspace
- Deleted all the pod related file from project and again pod install even updated the cocoa pods.
- Added $(inherited) flag in Other Linker Flags. and -ObjC also, so it may find path from pod framework.
- Added bridging file to import SDWebImage.
- Deep clean, build every time and restart the project.
I am checking all scenario since 4 to 5 hours but I am not getting the exact reason why this is happening.
Below is my Pod file.
platform :ios, '12.0'
use_frameworks!
target 'ProjectName' do
pod 'Alamofire'
pod 'SDWebImage'
end