I have a project with target frameworks.
FrameworkA is the only one to use a certain pod, hence in my pod file I h
At first, check whether your CocoaPod is compatible (supported) or not.
Make sure you dragged FrameworkA to the Embedded Binaries section in your project's General settings tab. Also make sure you have Embed Frameworks (1 item) in Build Phases tab and FrameworkA is included there.
Here's a solution:
Step One: Drag and drop FrameworkA.framework in your project navigation. Link framework and Library added this library.
Step Two: In Xcode go to Project > General > Embedded Binary > Add FrameworkA.framework.
Step Three: Make sure that in Build Phases tab Link Binary with Libraries (1 item) and Embed Frameworks (1 item) do exist.
P.S. I did it in Xcode 10.2.1 but in Xcode 10.1 it works the same way.